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: File Content Check | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- main | |
- develop | |
pull_request: | |
jobs: | |
file-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Check file contents | |
run: | | |
if [ -f APP_SPECIFICATION.md ] && grep -q "Boilerplate" APP_SPECIFICATION.md; then | |
echo "Please update the 'APP_SPECIFICATION.md' file with your own app data." | |
exit 1 | |
fi |