Remove unreferenced workflows and deduplicate the composite actions #334
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
| name: Check Changelog | |
| on: | |
| pull_request: | |
| types: [assigned, opened, synchronize, reopened, labeled, unlabeled] | |
| branches: | |
| - main | |
| jobs: | |
| check: | |
| # Can be skipped with the `no changelog` label on a PR | |
| name: Check Changelog | |
| runs-on: ubuntu-latest | |
| if: ${{ !startsWith(github.head_ref, 'dependabot/') }} | |
| steps: | |
| - uses: tarides/changelog-check-action@8f47e0becbfa549e4c82a3f562aa6f90d2c2ee8c # v4 | |
| with: | |
| changelog: CHANGELOG.md |