Update Konnect Changelog #13
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: Update Konnect Changelog | |
on: workflow_dispatch | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }} | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
update-changelog: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.PAT }} | |
- name: Run changelog script | |
working-directory: tools/beamer | |
env: | |
BEAMER_API_KEY: ${{ secrets.BEAMER_API_KEY }} | |
run: | | |
npm ci | |
node fetch-beamer-posts.js | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
title: Automated Konnect changelog update [skip-ci] | |
body: | | |
Latest Konnect changelog entries from beamer | |
labels: skip-changelog,review:general | |
base: main | |
branch: automated-konnect-changelog-update | |
token: ${{ secrets.PAT }} | |
committer: kong-docs[bot] <[email protected]> | |
author: kong-docs[bot] <[email protected]> | |
delete-branch: true | |
commit-message: "Automated Konnect changelog update" |