Skip to content

Commit

Permalink
Merge pull request #622 from tj-actions/chore/update-readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Sep 12, 2022
2 parents ba0dd99 + c28e299 commit d552acd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Expand Up @@ -76,6 +76,19 @@ jobs:
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
echo "$file was changed"
done
- name: Get changed files in the docs folder
id: changed-files-specific
uses: tj-actions/changed-files@v29.0.4
with:
files: |
docs/**
- name: Run step if any file(s) in the docs folder change
if: steps.changed-files-specific.outputs.any_changed == 'true'
run: |
echo "One or more files in the docs folder has changed."
echo "List all the files that have changed: ${{ steps.changed-files.outputs.all_changed_files }}"
```

If you feel generous and want to show some extra appreciation:
Expand Down

0 comments on commit d552acd

Please sign in to comment.