summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--LICENSE1
-rw-r--r--README.md6
-rw-r--r--internal/app/cmd/cmd.go6
-rw-r--r--internal/app/cmd/exec.go2
-rw-r--r--internal/app/cmd/register.go6
-rw-r--r--internal/pkg/config/config.example.yaml14
6 files changed, 21 insertions, 14 deletions
diff --git a/LICENSE b/LICENSE
index 4ee9327..ce49c38 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,3 +1,4 @@
+Copyright (c) 2023 The Forgejo Authors
Copyright (c) 2022 The Gitea Authors
Permission is hereby granted, free of charge, to any person obtaining a copy
diff --git a/README.md b/README.md
index a82731e..8ecf2cd 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,12 @@
A daemon that connects to a Forgejo instance and runs jobs for continous integration. The high level [installation instructions](https://forgejo.org/docs/next/admin/actions/) are part of the Forgejo documentation.
+# Configuration
+
+Display the usage with `forgejo-runner --help`.
+
+For more information on the configuration file, see the [commented example](internal/pkg/config/config.example.yaml).
+
# Hacking
The Forgejo runner depends on [a fork of ACT](https://code.forgejo.org/forgejo/act) and is a dependency of the [setup-forgejo action](https://code.forgejo.org/actions/setup-forgejo). Together they provide a development environment with end to end testing. Each repository also has some unit testing that can be used to quickly detect the simplest mistakes such as a failure to compile or static code checking failures (vulnerability, lint, etc.).
diff --git a/internal/app/cmd/cmd.go b/internal/app/cmd/cmd.go
index 254e2f0..3af4442 100644
--- a/internal/app/cmd/cmd.go
+++ b/internal/app/cmd/cmd.go
@@ -17,8 +17,8 @@ import (
func Execute(ctx context.Context) {
// ./act_runner
rootCmd := &cobra.Command{
- Use: "act_runner [event name to run]\nIf no event name passed, will default to \"on: push\"",
- Short: "Run GitHub actions locally by specifying the event name (e.g. `push`) or an action name directly.",
+ Use: "forgejo-runner [event name to run]\nIf no event name passed, will default to \"on: push\"",
+ Short: "Run Forgejo Actions locally by specifying the event name (e.g. `push`) or an action name directly.",
Args: cobra.MaximumNArgs(1),
Version: ver.Version(),
SilenceUsage: true,
@@ -35,7 +35,7 @@ func Execute(ctx context.Context) {
RunE: runRegister(ctx, &regArgs, &configFile), // must use a pointer to regArgs
}
registerCmd.Flags().BoolVar(&regArgs.NoInteractive, "no-interactive", false, "Disable interactive mode")
- registerCmd.Flags().StringVar(&regArgs.InstanceAddr, "instance", "", "Gitea instance address")
+ registerCmd.Flags().StringVar(&regArgs.InstanceAddr, "instance", "", "Forgejo instance address")
registerCmd.Flags().StringVar(&regArgs.Token, "token", "", "Runner token")
registerCmd.Flags().StringVar(&regArgs.RunnerName, "name", "", "Runner name")
registerCmd.Flags().StringVar(&regArgs.Labels, "labels", "", "Runner tags, comma separated")
diff --git a/internal/app/cmd/exec.go b/internal/app/cmd/exec.go
index 9a6824c..1092fac 100644
--- a/internal/app/cmd/exec.go
+++ b/internal/app/cmd/exec.go
@@ -404,7 +404,7 @@ func runExec(ctx context.Context, execArgs *executeArgs) func(cmd *cobra.Command
NoSkipCheckout: execArgs.noSkipCheckout,
// PresetGitHubContext: preset,
// EventJSON: string(eventJSON),
- ContainerNamePrefix: fmt.Sprintf("GITEA-ACTIONS-TASK-%s", eventName),
+ ContainerNamePrefix: fmt.Sprintf("FORGEJO-ACTIONS-TASK-%s", eventName),
ContainerMaxLifetime: maxLifetime,
ContainerNetworkMode: container.NetworkMode(execArgs.network),
DefaultActionInstance: execArgs.defaultActionsURL,
diff --git a/internal/app/cmd/register.go b/internal/app/cmd/register.go
index f1114cf..f98ab27 100644
--- a/internal/app/cmd/register.go
+++ b/internal/app/cmd/register.go
@@ -236,7 +236,7 @@ func printStageHelp(stage registerStage) {
case StageOverwriteLocalConfig:
log.Infoln("Runner is already registered, overwrite local config? [y/N]")
case StageInputInstance:
- log.Infoln("Enter the Gitea instance URL (for example, https://gitea.com/):")
+ log.Infoln("Enter the Forgejo instance URL (for example, https://next.forgejo.org/):")
case StageInputToken:
log.Infoln("Enter the runner token:")
case StageInputRunnerName:
@@ -312,11 +312,11 @@ func doRegister(ctx context.Context, cfg *config.Config, inputs *registerInputs)
}
if err != nil {
log.WithError(err).
- Errorln("Cannot ping the Gitea instance server")
+ Errorln("Cannot ping the Forgejo instance server")
// TODO: if ping failed, retry or exit
time.Sleep(time.Second)
} else {
- log.Debugln("Successfully pinged the Gitea instance server")
+ log.Debugln("Successfully pinged the Forgejo instance server")
break
}
}
diff --git a/internal/pkg/config/config.example.yaml b/internal/pkg/config/config.example.yaml
index df4f6cc..5c185f2 100644
--- a/internal/pkg/config/config.example.yaml
+++ b/internal/pkg/config/config.example.yaml
@@ -20,14 +20,14 @@ runner:
# It will be ignored if it's empty or the file doesn't exist.
env_file: .env
# The timeout for a job to be finished.
- # Please note that the Gitea instance also has a timeout (3h by default) for the job.
- # So the job could be stopped by the Gitea instance if it's timeout is shorter than this.
+ # Please note that the Forgejo instance also has a timeout (3h by default) for the job.
+ # So the job could be stopped by the Forgejo instance if it's timeout is shorter than this.
timeout: 3h
- # Whether skip verifying the TLS certificate of the Gitea instance.
+ # Whether skip verifying the TLS certificate of the Forgejo instance.
insecure: false
- # The timeout for fetching the job from the Gitea instance.
+ # The timeout for fetching the job from the Forgejo instance.
fetch_timeout: 5s
- # The interval for fetching the job from the Gitea instance.
+ # The interval for fetching the job from the Forgejo instance.
fetch_interval: 2s
# The labels of a runner are used to determine which jobs the runner can run, and how to run them.
# Like: ["macos-arm64:host", "ubuntu-latest:docker://node:16-bullseye", "ubuntu-22.04:docker://node:16-bullseye"]
@@ -56,11 +56,11 @@ cache:
container:
# Specifies the network to which the container will connect.
# Could be host, bridge or the name of a custom network.
- # If it's empty, act_runner will create a network automatically.
+ # If it's empty, create a network automatically.
network: ""
# Whether to use privileged mode or not when launching task containers (privileged mode is required for Docker-in-Docker).
privileged: false
- # And other options to be used when the container is started (eg, --add-host=my.gitea.url:host-gateway).
+ # And other options to be used when the container is started (eg, --add-host=my.forgejo.url:host-gateway).
options:
# The parent directory of a job's working directory.
# If it's empty, /workspace will be used.