chore(deps): update actions/cache action to v4 #331
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check for updated dist files | |
on: | |
pull_request: | |
jobs: | |
check-if-dist-changed: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dorny/paths-filter@v2 | |
id: changes | |
with: | |
filters: | | |
dist: | |
- 'dist/**' | |
- uses: mshick/add-pr-comment@v2 | |
if: steps.changes.outputs.dist == 'true' | |
with: | |
message: | | |
Hi 👋 | |
Thank you for this contribution! | |
Due to security reasons, we only allow updating the `dist/**` files with our own workflows. | |
_This was an automated message_ | |
repo-token: ${{ secrets.GH_TOKEN }} | |
repo-token-user-login: cobraz |