We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d806b98 commit 14406cfCopy full SHA for 14406cf
1 file changed
.github/workflows/overview-complete.yml
@@ -0,0 +1,28 @@
1
+# Are all patterns shown somewhere in the main overview (README)?
2
+name: Overview Complete
3
+
4
+on:
5
+ push:
6
+ branches:
7
+ - main
8
+ pull_request:
9
10
11
12
+jobs:
13
+ linkChecker:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v5
17
+ with:
18
+ fetch-depth: 0
19
20
+ - name: Get changed files
21
+ id: changed-files
22
+ uses: tj-actions/changed-files@v47
23
24
+ - name: Filter markdown files only
25
+ run: |
26
+ md_files=`find ${{ steps.changed-files.outputs.all_changed_files }} -maxdepth 0 -name "*.md" | tr '\n' ' '`
27
+ echo "MARKDOWN_FILES=$md_files" >> $GITHUB_ENV
28
0 commit comments