1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-09-15 18:57:01 +00:00

chore: s|runner.forgejo.org|code.forgejo.org/forgejo/runner| (#747)

So that it can be used as a package. Not useful right away, but a precondition to merge the ACT repository into the runner repository.

Reviewed-on: https://code.forgejo.org/forgejo/runner/pulls/747
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
Co-authored-by: Earl Warren <contact@earl-warren.org>
Co-committed-by: Earl Warren <contact@earl-warren.org>
This commit is contained in:
Earl Warren 2025-07-27 16:26:10 +00:00 committed by earl-warren
parent 0e6951213b
commit b032f2a540
No known key found for this signature in database
GPG key ID: F128CBE6AB3A7201
20 changed files with 51 additions and 51 deletions

View file

@ -18,13 +18,13 @@ import (
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"runner.forgejo.org/internal/app/poll"
"runner.forgejo.org/internal/app/run"
"runner.forgejo.org/internal/pkg/client"
"runner.forgejo.org/internal/pkg/config"
"runner.forgejo.org/internal/pkg/envcheck"
"runner.forgejo.org/internal/pkg/labels"
"runner.forgejo.org/internal/pkg/ver"
"code.forgejo.org/forgejo/runner/internal/app/poll"
"code.forgejo.org/forgejo/runner/internal/app/run"
"code.forgejo.org/forgejo/runner/internal/pkg/client"
"code.forgejo.org/forgejo/runner/internal/pkg/config"
"code.forgejo.org/forgejo/runner/internal/pkg/envcheck"
"code.forgejo.org/forgejo/runner/internal/pkg/labels"
"code.forgejo.org/forgejo/runner/internal/pkg/ver"
)
func runDaemon(ctx context.Context, configFile *string) func(cmd *cobra.Command, args []string) error {