From c7a937a8b0479ad529affc48b295f2c2c467100c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Papp=20=28TWiStErRob=29?= Date: Tue, 21 Apr 2026 19:09:12 +0100 Subject: [PATCH] Test env in with: context --- .github/workflows/env-in-with.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/env-in-with.yml diff --git a/.github/workflows/env-in-with.yml b/.github/workflows/env-in-with.yml new file mode 100644 index 0000000..e541923 --- /dev/null +++ b/.github/workflows/env-in-with.yml @@ -0,0 +1,19 @@ +name: "Env in with:" + +on: + push: + branches: [tw/test-env-in-with] + +env: + RESOLVED: ${{ inputs.dry-run || false }} + +jobs: + test: + name: "Test env in with:" + runs-on: ubuntu-latest + steps: + - name: "Use env in with:" + uses: actions/github-script@v7 + with: + script: | + core.notice(`env.RESOLVED: '${process.env.RESOLVED}'`);