mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 16:43:09 +02:00
983480131b
* chore: Automated release * follow
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
name: "Release Manager: sync changelog with PR"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- release/**
|
|
paths:
|
|
- 'CHANGELOG.md'
|
|
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
permissions:
|
|
contents: write
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
edit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
# headがrelease/かつopenのPRを1つ取得
|
|
- name: Get PR
|
|
run: |
|
|
echo "pr_number=$(gh pr list --limit 1 --head "${{ github.ref_name }}" --json number --jq '.[] | .number')" >> $GITHUB_OUTPUT
|
|
id: get_pr
|
|
- name: Get target version
|
|
uses: misskey-dev/release-manager-actions/.github/actions/get-target-version@v1
|
|
id: v
|
|
# CHANGELOG.mdの内容を取得
|
|
- name: Get changelog
|
|
uses: misskey-dev/release-manager-actions/.github/actions/get-changelog@v1
|
|
with:
|
|
version: ${{ steps.v.outputs.target_version }}
|
|
id: changelog
|
|
# PRのnotesを更新
|
|
- name: Update PR
|
|
run: |
|
|
gh pr edit ${{ steps.get_pr.outputs.pr_number }} --body "${{ steps.changelog.outputs.changelog }}"
|