Enforce changelog entry for PR

This commit is contained in:
messense 2022-09-19 23:45:39 +08:00
parent c1cb922c37
commit 0008da3b01
No known key found for this signature in database
GPG Key ID: BB41A8A2C716CCA9
1 changed files with 35 additions and 0 deletions

35
.github/workflows/changelog.yml vendored Normal file
View File

@ -0,0 +1,35 @@
name: changelog
on:
pull_request:
types: [opened, synchronize, labeled, unlabeled]
jobs:
check:
name: Check changelog entry
runs-on: ubuntu-latest
if: ${{ !contains(github.event.pull_request.labels.*.name, 'CI-skip-changelog') }}
steps:
- uses: actions/checkout@v3
- uses: actions/github-script@v6
id: check
with:
script: |
const fs = require('node:fs')
const path = require('node:path')
let found = false
const changeTypes = ['packaging', 'added', 'changed', 'removed', 'fixed']
for (changeType of changeTypes) {
const filename = path.join('newsfragments', `${context.issue.number}.${changeType}.md`)
if (fs.existsSync(filename)) {
found = true
break
}
}
if (!found) {
const errorMsg = '📝 Changelog entry not found, please add one (or more) to `newsfragments` directory. For more information see https://github.com/PyO3/pyo3/blob/main/Contributing.md#documenting-changes'
core.error(errorMsg)
process.exit(1)
}