diff options
author | Earl Warren <contact@earl-warren.org> | 2024-11-21 11:33:07 +0100 |
---|---|---|
committer | Earl Warren <contact@earl-warren.org> | 2024-11-21 13:18:04 +0100 |
commit | fc43985812e23050b5b2f99fa62b4f78d56ce47c (patch) | |
tree | 5d79081f23c39885d84672442f3893d2ac003600 /pkg/runner/testdata/skip/skip.yml | |
parent | Merge pull request 'ci: use `go.mod` to install go' (#66) from ci/use-go-mod ... (diff) | |
download | forgejo-act-fc43985812e23050b5b2f99fa62b4f78d56ce47c.tar.xz forgejo-act-fc43985812e23050b5b2f99fa62b4f78d56ce47c.zip |
fix: log skipped job and step result as info instead of debug
This allows the Forgejo runner to obtain the job result from the
logs even when it is not in debug mode.
Diffstat (limited to 'pkg/runner/testdata/skip/skip.yml')
-rw-r--r-- | pkg/runner/testdata/skip/skip.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pkg/runner/testdata/skip/skip.yml b/pkg/runner/testdata/skip/skip.yml new file mode 100644 index 0000000..7f6d303 --- /dev/null +++ b/pkg/runner/testdata/skip/skip.yml @@ -0,0 +1,9 @@ +name: skip +on: push + +jobs: + check: + runs-on: ubuntu-latest + steps: + - if: false + run: echo nothing |