Merge pull request #7630 from eksctl-io/update-release-notes #2229
This file contains 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: Draft Release Notes | |
on: | |
push: | |
# branches to consider in the event; optional, defaults to all | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
update_release_draft: | |
permissions: | |
# write permission is required to create a github release | |
contents: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
# Drafts your next Release notes as Pull Requests are merged into "master" | |
- name: Draft release notes | |
id: draft | |
uses: release-drafter/release-drafter@3f0f87098bd6b5c5b9a36d49c41d998ea58f9348 #v6.0.0 | |
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml | |
# with: | |
# config-name: my-config.yml | |
# disable-autolabeler: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
commitish: main | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1 | |
- name: Copy release notes from Draft | |
run: | | |
tag_name=${{ steps.draft.outputs.tag_name }} | |
echo "${{ steps.draft.outputs.body }}" > docs/release_notes/${tag_name:1}.md | |
- name: Upsert pull request | |
uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc #v6.0.1 | |
with: | |
token: ${{ secrets.EKSCTLBOT_TOKEN }} | |
commit-message: Add release notes for ${{ steps.draft.outputs.tag_name }} | |
committer: eksctl-bot <[email protected]> | |
body: | | |
Auto-generated by [eksctl Draft Release Notes GitHub workflow][1] | |
[1]: https://github.com/eksctl-io/eksctl/blob/main/.github/workflows/release-drafter.yaml | |
title: 'Add release notes for ${{ steps.draft.outputs.tag_name }}' | |
labels: kind/improvement, skip-release-notes | |
branch: update-release-notes |