diff options
| author | 2023-02-08 00:39:56 -0500 | |
|---|---|---|
| committer | 2023-02-08 00:39:56 -0500 | |
| commit | ae103e148eb3c15606b816505492d870ef062ad3 (patch) | |
| tree | b7916225d76ac8d1db28feff7aa46a4ee672b3dc /.github | |
| parent | f5fb17e5a64b215644bc104f099dad8c2f10c37d (diff) | |
New upstream version 2.10.0.upstream/2.10.0
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/pull-request.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml new file mode 100644 index 0000000..9d94c4b --- /dev/null +++ b/.github/workflows/pull-request.yml @@ -0,0 +1,15 @@ +name: Changelog + +on: + pull_request: + types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] + +jobs: + changelog: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: amoniacou/changelog-enforcer@v1.4.0 + with: + changeLogPath: 'CHANGELOG.md' + skipLabel: 'Skip-Changelog' |
