We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b84f8 commit e8df316Copy full SHA for e8df316
.github/workflows/changelog_test.yml
@@ -20,6 +20,23 @@ jobs:
20
echo "Changed files:"
21
echo "${{ github.event.pull_request.changed_files }}"
22
23
+ - name: Get all changed markdown files
24
+ id: changed-markdown-files
25
+ uses: tj-actions/changed-files@v44
26
+ with:
27
+ # Avoid using single or double quotes for multiline patterns
28
+ files: |
29
+ **.md
30
+
31
+ - name: List all changed files markdown files
32
+ if: steps.changed-markdown-files.outputs.any_changed == 'true'
33
+ env:
34
+ ALL_CHANGED_FILES: ${{ steps.changed-markdown-files.outputs.all_changed_files }}
35
+ run: |
36
+ for file in ${ALL_CHANGED_FILES}; do
37
+ echo "$file was changed"
38
+ done
39
40
- name: Check for CHANGELOG.md update
41
id: changelog-check
42
run: |
0 commit comments