⬆️ Updates peter-evans/create-or-update-comment digest to cf1a4a2 #941
This file contains hidden or 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
| # This workflow enforces the update of a changelog file on every pull request | |
| name: "Enforce Changelog" | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Enforce changelog️ | |
| uses: dangoslen/changelog-enforcer@v2 | |
| with: | |
| changeLogPath: "CHANGELOG.md" | |
| skipLabels: "Skip Changelog" |