mirror of
https://github.com/prometheus/prometheus.git
synced 2026-04-01 20:02:05 +02:00
Adds `scripts/generate_release_notes.sh` to produce a structured CHANGELOG.md starting point using the Kubernetes release-notes tool. It handles both minor and patch releases. `RELEASE.md` is updated to reference the script and drop the manual instructions. Version examples are updated from 2.x to 3.x. The `check_release_notes` CI workflow is extended to also run on `release-*` branches in order for the script to catch commits added to the release note , and the PR template wording is tightened. Signed-off-by: machine424 <ayoubmrini424@gmail.com>
27 lines
859 B
YAML
27 lines
859 B
YAML
name: 'Check release notes'
|
|
on:
|
|
pull_request:
|
|
branches: [main, 'release-*']
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- edited
|
|
- synchronize
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
check_release_notes:
|
|
name: check
|
|
runs-on: ubuntu-latest
|
|
# Don't run this workflow on forks.
|
|
# Don't run it on dependabot PRs either as humans would take control in case a bump introduces a breaking change.
|
|
if: (github.repository_owner == 'prometheus' || github.repository_owner == 'prometheus-community') && github.event.pull_request.user.login != 'dependabot[bot]'
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- env:
|
|
PR_DESCRIPTION: ${{ github.event.pull_request.body }}
|
|
run: |
|
|
echo "$PR_DESCRIPTION" | ./scripts/check_release_notes.sh
|