Skip to content

Merge pull request #629 from weseek/support/add-github-token #230

Merge pull request #629 from weseek/support/add-github-token

Merge pull request #629 from weseek/support/add-github-token #230

name: Release - Update draft
on:
push:
branches:
- master
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
# Refs: https://github.com/release-drafter/release-drafter
release-update_draft:
runs-on: ubuntu-latest
outputs:
RELEASE_VERSION: ${{ steps.package-json.outputs.packageVersion }}
RELEASE_DRAFT_BODY: ${{ steps.release-drafter.outputs.body }}
steps:
- uses: actions/checkout@v4
- name: Retrieve information from package.json
uses: myrotvorets/[email protected]
id: package-json
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v6
id: release-drafter
with:
name: v${{ steps.package-json.outputs.packageVersion }}
tag: v${{ steps.package-json.outputs.packageVersion }}
version: ${{ steps.package-json.outputs.packageVersion }}
disable-autolabeler: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Refs: https://github.com/bakunyo/git-pr-release-action
update-release-pr:
needs: release-update_draft
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# See: https://github.com/bakunyo/git-pr-release-action/issues/15, https://github.com/samunohito/SimpleVolumeMixer/commit/2059044c71236509466cf9b1bb2d56d515274938
- name: Create/Update Pull Request
uses: bakunyo/git-pr-release-action@281e1fe424fac01f3992542266805e4202a22fe0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_PR_RELEASE_BRANCH_PRODUCTION: stable
GIT_PR_RELEASE_BRANCH_STAGING: master
GIT_PR_RELEASE_TEMPLATE: .github/git-pr-release-template.erb
GIT_PR_RELEASE_TITLE: Release v${{ needs.release-update_draft.outputs.RELEASE_VERSION }}
GIT_PR_RELEASE_BODY: ${{ needs.release-update_draft.outputs.RELEASE_DRAFT_BODY }}