File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -14,27 +14,27 @@ jobs:
1414 runs-on : ubuntu-latest
1515 steps :
1616 - uses : actions/checkout@v5
17- with :
18- fetch-depth : 0
17+ # with:
18+ # fetch-depth: 0
1919
20- - name : Get changed files
21- id : changed-files
22- uses : tj-actions/changed-files@v47
20+ # - name: Get changed files
21+ # id: changed-files
22+ # uses: tj-actions/changed-files@v47
2323
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- echo "$md_files"
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+ # echo "$md_files"
2929
3030 - name : Check if all files exist in README
3131 - run : |
3232 README="README.md"
3333
3434 # Ensure README.md exists
3535 if [[ ! -f "$README" ]]; then
36- echo "Error: $README not found!"
37- exit 1
36+ echo "Error: $README not found!"
37+ exit 1
3838 fi
3939
4040 missing=0
You can’t perform that action at this time.
0 commit comments