1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-08-11 17:50:58 +00:00

feat: add flag to always run the checkout action (#1049)

act has a feature that skips the checkout action to do a remote
checkout when a local checkout exists. in some cases, e.g. when
running act in a CI, you always want to clone the repository.
This commit is contained in:
Robert Kowalski 2022-03-21 12:23:06 +01:00 committed by GitHub
parent f31d7fe160
commit f93a6e2817
5 changed files with 9 additions and 1 deletions

View file

@ -48,6 +48,7 @@ type Config struct {
ArtifactServerPath string // the path where the artifact server stores uploads
ArtifactServerPort string // the port the artifact server binds to
CompositeRestrictions *model.CompositeRestrictions // describes which features are available in composite actions
NoSkipCheckout bool // do not skip actions/checkout
}
// Resolves the equivalent host path inside the container