summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/inputs-via-env-context/push.yml
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/runner/testdata/inputs-via-env-context/push.yml')
-rw-r--r--pkg/runner/testdata/inputs-via-env-context/push.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/runner/testdata/inputs-via-env-context/push.yml b/pkg/runner/testdata/inputs-via-env-context/push.yml
new file mode 100644
index 0000000..07fadeb
--- /dev/null
+++ b/pkg/runner/testdata/inputs-via-env-context/push.yml
@@ -0,0 +1,15 @@
+on: push
+jobs:
+ test-inputs-via-env-context:
+ runs-on: self-hosted
+ steps:
+ - uses: actions/checkout@v3
+ - uses: ./inputs-via-env-context
+ with:
+ test-env-input: ${{ env.test-env-input }}
+ env:
+ test-env-input: ${{ github.event_name }}/${{ github.run_id }}
+ - run: |
+ exit ${{ env.test-env-input == format('{0}/{1}', github.event_name, github.run_id) && '0' || '1' }}
+ env:
+ test-env-input: ${{ github.event_name }}/${{ github.run_id }} \ No newline at end of file