diff options
author | Daniel Baumann <daniel@debian.org> | 2025-01-24 09:00:09 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2025-01-24 09:00:09 +0100 |
commit | 4bf4dabd48aa70da3699b9a023f22689645d24f4 (patch) | |
tree | ed8175444649e71c0ed0e5f1d30101786ca2473e /pkg/runner/testdata/issue-597 | |
parent | Initial commit. (diff) | |
download | forgejo-act-debian.tar.xz forgejo-act-debian.zip |
Adding upstream version 1.24.0.HEADupstream/1.24.0upstreamdebian
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'pkg/runner/testdata/issue-597')
-rw-r--r-- | pkg/runner/testdata/issue-597/spelling.yaml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/pkg/runner/testdata/issue-597/spelling.yaml b/pkg/runner/testdata/issue-597/spelling.yaml new file mode 100644 index 0000000..d594dcb --- /dev/null +++ b/pkg/runner/testdata/issue-597/spelling.yaml @@ -0,0 +1,32 @@ +name: issue-597 +on: push + + +jobs: + my_first_job: + + runs-on: ubuntu-latest + steps: + - name: My first false step + if: "endsWith('Should not', 'o1')" + uses: actions/checkout@v2.0.0 + with: + ref: refs/pull/${{github.event.pull_request.number}}/merge + fetch-depth: 5 + - name: My first true step + if: ${{endsWith('Hello world', 'ld')}} + uses: actions/hello-world-javascript-action@main + with: + who-to-greet: "Renst the Octocat" + - name: My second false step + if: "endsWith('Should not evaluate', 'o2')" + uses: actions/checkout@v2.0.0 + with: + ref: refs/pull/${{github.event.pull_request.number}}/merge + fetch-depth: 5 + - name: My third false step + if: ${{endsWith('Should not evaluate', 'o3')}} + uses: actions/checkout@v2.0.0 + with: + ref: refs/pull/${{github.event.pull_request.number}}/merge + fetch-depth: 5 |