From f3d3533775424a9e8337aa027022078dd555284f Mon Sep 17 00:00:00 2001 From: Jose Valdes Date: Wed, 31 Dec 2025 10:40:35 -0600 Subject: [PATCH 1/7] triggering github action --- 03-core-features/filters/included-file.md | 1 + 1 file changed, 1 insertion(+) diff --git a/03-core-features/filters/included-file.md b/03-core-features/filters/included-file.md index e69de29b..a9738745 100644 --- a/03-core-features/filters/included-file.md +++ b/03-core-features/filters/included-file.md @@ -0,0 +1 @@ +# Title From b36628e31386b53235885be6651f714fa521497a Mon Sep 17 00:00:00 2001 From: Jose Valdes Date: Wed, 31 Dec 2025 11:15:37 -0600 Subject: [PATCH 2/7] Second push --- 03-core-features/filters/included-file.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03-core-features/filters/included-file.md b/03-core-features/filters/included-file.md index a9738745..922cebed 100644 --- a/03-core-features/filters/included-file.md +++ b/03-core-features/filters/included-file.md @@ -1 +1 @@ -# Title +# Title for trigger From 1220f9249dd03ae4868e447cab5a0a7f64a35227 Mon Sep 17 00:00:00 2001 From: antoniovaldes Date: Wed, 31 Dec 2025 11:26:43 -0600 Subject: [PATCH 3/7] No trigger event (#2) --- 03-core-features/filters/excluded-file.txt | 1 + 1 file changed, 1 insertion(+) 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 From fbbaa35bc82a27c7374b0459d5103a4202bdf37f Mon Sep 17 00:00:00 2001 From: Jose Valdes Date: Thu, 1 Jan 2026 18:21:58 -0600 Subject: [PATCH 4/7] First test variables --- .github/workflows/03-core-features--06-passing-data.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/03-core-features--06-passing-data.yaml b/.github/workflows/03-core-features--06-passing-data.yaml index a0f4907f..c4385a5b 100644 --- a/.github/workflows/03-core-features--06-passing-data.yaml +++ b/.github/workflows/03-core-features--06-passing-data.yaml @@ -12,7 +12,7 @@ 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" From a2b35d66396db7152586e83836f32631b2bf04fb Mon Sep 17 00:00:00 2001 From: Jose Valdes Date: Thu, 1 Jan 2026 18:26:04 -0600 Subject: [PATCH 5/7] Second test --- .github/workflows/03-core-features--06-passing-data.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/03-core-features--06-passing-data.yaml b/.github/workflows/03-core-features--06-passing-data.yaml index c4385a5b..7ba5c359 100644 --- a/.github/workflows/03-core-features--06-passing-data.yaml +++ b/.github/workflows/03-core-features--06-passing-data.yaml @@ -22,7 +22,7 @@ jobs: - 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: From 583899b1c575308a6fffc75f435faea05e8bd7a0 Mon Sep 17 00:00:00 2001 From: Jose Valdes Date: Thu, 1 Jan 2026 18:32:48 -0600 Subject: [PATCH 6/7] Thrid test --- .github/workflows/03-core-features--06-passing-data.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/03-core-features--06-passing-data.yaml b/.github/workflows/03-core-features--06-passing-data.yaml index 7ba5c359..30c1a996 100644 --- a/.github/workflows/03-core-features--06-passing-data.yaml +++ b/.github/workflows/03-core-features--06-passing-data.yaml @@ -18,7 +18,7 @@ jobs: echo "foo=${foo}" >> "$GITHUB_OUTPUT" # 2) Job-scoped environment variable - echo "FOO=${foo}" >> "$GITHUB_ENV" + echo "FOO2=${foo}" >> "$GITHUB_ENV" - name: Inspect values inside producer run: | From a93ba6c229ec536d901a23cb7a430b464ec41853 Mon Sep 17 00:00:00 2001 From: Jose Valdes Date: Thu, 1 Jan 2026 18:35:42 -0600 Subject: [PATCH 7/7] fourth test --- .github/workflows/03-core-features--06-passing-data.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/03-core-features--06-passing-data.yaml b/.github/workflows/03-core-features--06-passing-data.yaml index 30c1a996..cf6d9536 100644 --- a/.github/workflows/03-core-features--06-passing-data.yaml +++ b/.github/workflows/03-core-features--06-passing-data.yaml @@ -16,7 +16,7 @@ jobs: # 1) Step output (for job output) echo "foo=${foo}" >> "$GITHUB_OUTPUT" - + foo=barbar # 2) Job-scoped environment variable echo "FOO2=${foo}" >> "$GITHUB_ENV"