chore: rename act_runner references to runner (#38791)

The runner repository moved to https://gitea.com/gitea/runner, update references.
This commit is contained in:
silverwind
2026-08-05 18:53:50 +02:00
committed by GitHub
parent deccd53c24
commit c98a1597c9
9 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -239,10 +239,10 @@ func DeleteRun(ctx context.Context, run *actions_model.ActionRun) error {
if err := db.WithTx(ctx, func(ctx context.Context) error {
// TODO: Deleting task records could break current ephemeral runner implementation. This is a temporary workaround suggested by ChristopherHX.
// Since you delete potentially the only task an ephemeral act_runner has ever run, please delete the affected runners first.
// Since you delete potentially the only task an ephemeral runner has ever run, please delete the affected runners first.
// one of
// call cleanup ephemeral runners first
// delete affected ephemeral act_runners
// delete affected ephemeral runners
// I would make ephemeral runners fully delete directly before formally finishing the task
//
// See also: https://github.com/go-gitea/gitea/pull/34337#issuecomment-2862222788
+2 -2
View File
@@ -101,7 +101,7 @@ jobs:
needs: job1
if: ${{ always() && needs.job1.result == 'success' }}
steps:
- run: echo "will be checked by act_runner"
- run: echo "will be checked by runner"
`)},
},
want: map[int64]actions_model.Status{2: actions_model.StatusWaiting},
@@ -120,7 +120,7 @@ jobs:
needs: job1
if: ${{ always() && needs.job1.result == 'failure' }}
steps:
- run: echo "will be checked by act_runner"
- run: echo "will be checked by runner"
`)},
},
want: map[int64]actions_model.Status{2: actions_model.StatusWaiting},