Skip to content

Commit

Permalink
chore: update docs (#964)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Jan 25, 2023
1 parent 966bc5f commit 41ed98f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Expand Up @@ -98,6 +98,21 @@ jobs:
run: |
echo "One or more files in the docs folder has changed."
echo "List all the files that have changed: ${{ steps.changed-files-specific.outputs.all_changed_files }}"
# Example 3
- name: Get changed js files excluding the docs folder
id: changed-files-excluded
uses: tj-actions/changed-files@v35
with:
files: |
**/*.js
files_ignore: docs/** # Alternatively using: `docs`

- name: Run step if any other js file(s) change
if: steps.changed-files-excluded.outputs.any_changed == 'true'
run: |
echo "One or more js files not in the doc folder has changed."
echo "List all the files that have changed: ${{ steps.changed-files-excluded.outputs.all_changed_files }}"
```

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

0 comments on commit 41ed98f

Please sign in to comment.