diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml new file mode 100644 index 0000000..c19c565 --- /dev/null +++ b/.github/workflows/release-notes.yml @@ -0,0 +1,20 @@ +name: Create Release Notes PR +on: + release: + types: [published] + +jobs: + add-release-notes: + runs-on: ubuntu-latest + permissions: + contents: read + + steps: + - name: Generate release notes + uses: pantheon-systems/action-release-notes@develop + env: + GH_TOKEN: ${{ secrets.TOKEN }} + with: + github_token: ${{ secrets.TOKEN }} + repo_name: Plugin Pipeline Example + categories: wordpress,plugins \ No newline at end of file