This github action updates the description of the PR with the commit changelog.
This action doesn't create a PR, but updates it.
name: Creates and Updates PR
on:
push:
branches:
- some-branch
jobs:
pull-request:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: update-pull-request
uses: paperboxai/Github-Action-PR-Commit-Changelog@v1.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
The GITHUB_TOKEN secret. This is required.
MIT