diff --git a/.github/workflows/03-core-features--06-passing-data.yaml b/.github/workflows/03-core-features--06-passing-data.yaml index a0f4907f..cf6d9536 100644 --- a/.github/workflows/03-core-features--06-passing-data.yaml +++ b/.github/workflows/03-core-features--06-passing-data.yaml @@ -12,17 +12,17 @@ jobs: - name: Generate and export foo id: generate-foo run: | - foo=bar + foo=bar2 # 1) Step output (for job output) echo "foo=${foo}" >> "$GITHUB_OUTPUT" - + foo=barbar # 2) Job-scoped environment variable - echo "FOO=${foo}" >> "$GITHUB_ENV" + echo "FOO2=${foo}" >> "$GITHUB_ENV" - name: Inspect values inside producer run: | - echo "FOO (set via GITHUB_ENV): $FOO" + echo "FOO (set via GITHUB_ENV): $FOO2" echo "foo (step output): ${{ steps.generate-foo.outputs.foo }}" consumer: diff --git a/03-core-features/filters/excluded-file.txt b/03-core-features/filters/excluded-file.txt index e69de29b..67026989 100644 --- a/03-core-features/filters/excluded-file.txt +++ b/03-core-features/filters/excluded-file.txt @@ -0,0 +1 @@ +This will not trigger event \ No newline at end of file diff --git a/03-core-features/filters/included-file.md b/03-core-features/filters/included-file.md index e69de29b..922cebed 100644 --- a/03-core-features/filters/included-file.md +++ b/03-core-features/filters/included-file.md @@ -0,0 +1 @@ +# Title for trigger