We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb77866 commit fb259bbCopy full SHA for fb259bb
2 files changed
.github/workflows/test.yaml
@@ -0,0 +1,28 @@
1
+name: Test Workflow
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - 'test/README.md'
7
+ - 'test/README.MD'
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ test:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: 📥 Checkout repository
18
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19
20
+ - name: 🔎 Display triggered file changes
21
+ run: |
22
+ echo "Test workflow triggered by README change in test folder"
23
+ echo "Commit: ${{ github.sha }}"
24
+ echo "Branch: ${{ github.ref_name }}"
25
26
+ - name: 📄 Show README content
27
28
+ cat test/README.md || cat test/README.MD || echo "README not found"
test/README.MD
@@ -0,0 +1,2 @@
+# Test
+This is a test file
0 commit comments