summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/pull-request/main.yaml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2025-01-24 09:00:09 +0100
committerDaniel Baumann <daniel@debian.org>2025-01-24 09:00:09 +0100
commit4bf4dabd48aa70da3699b9a023f22689645d24f4 (patch)
treeed8175444649e71c0ed0e5f1d30101786ca2473e /pkg/runner/testdata/pull-request/main.yaml
parentInitial commit. (diff)
downloadforgejo-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/pull-request/main.yaml')
-rw-r--r--pkg/runner/testdata/pull-request/main.yaml26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkg/runner/testdata/pull-request/main.yaml b/pkg/runner/testdata/pull-request/main.yaml
new file mode 100644
index 0000000..eb81939
--- /dev/null
+++ b/pkg/runner/testdata/pull-request/main.yaml
@@ -0,0 +1,26 @@
+name: basic
+on: pull_request
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ # test refs from event.json
+ - run: echo '${{github.ref}}'
+ - run: echo '${{github.head_ref}}' | grep sample-head-ref
+ - run: echo '${{github.base_ref}}' | grep sample-base-ref
+ # test main/composite context equality with data from event.json
+ - run: |
+ runs:
+ using: composite
+ steps:
+ - run: |
+ echo WORKFLOW_GITHUB_CONTEXT="$WORKFLOW_GITHUB_CONTEXT"
+ echo COMPOSITE_GITHUB_CONTEXT="$COMPOSITE_GITHUB_CONTEXT"
+ [[ "$WORKFLOW_GITHUB_CONTEXT" = "$COMPOSITE_GITHUB_CONTEXT" ]]
+ env:
+ WORKFLOW_GITHUB_CONTEXT: ${{ tojson(tojson(github.event)) }}
+ COMPOSITE_GITHUB_CONTEXT: ${{ '${{tojson(github.event)}}' }}
+ shell: bash
+ shell: cp {0} action.yml
+ - uses: ./