mirror of
https://github.com/block/goose.git
synced 2026-07-10 00:20:17 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
67 lines
2 KiB
YAML
67 lines
2 KiB
YAML
name: Update Release Notes
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- synchronize
|
|
branches:
|
|
- main
|
|
- release/**
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
update-release-notes:
|
|
runs-on: ubuntu-latest
|
|
if: startsWith(github.event.pull_request.head.ref, 'release/') && github.event.pull_request.user.login == 'github-actions[bot]'
|
|
steps:
|
|
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: cashapp/activate-hermit@cea9af7913204a965fd488637a8d1811bba2e616 # v1
|
|
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
|
|
|
|
- name: Extract version from branch name
|
|
env:
|
|
REF_NAME: ${{ github.head_ref }}
|
|
run: |
|
|
BRANCH_NAME="$REF_NAME"
|
|
VERSION=$(echo "$BRANCH_NAME" | sed 's/release\///')
|
|
echo "version=$VERSION" >> $GITHUB_ENV
|
|
echo "Version: $VERSION"
|
|
|
|
- name: Get prior version
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
PRIOR_TAG=$(just get-prior-version "${{ env.version }}")
|
|
if [[ -z "$PRIOR_TAG" ]]; then
|
|
echo "No prior version (first release), using first commit"
|
|
PRIOR_TAG=$(git rev-list --max-parents=0 HEAD)
|
|
fi
|
|
echo "prior_ref=$PRIOR_TAG" >> $GITHUB_ENV
|
|
echo "Prior ref: $PRIOR_TAG"
|
|
|
|
- name: Generate release notes
|
|
uses: ./.github/actions/generate-release-pr-body
|
|
with:
|
|
version: ${{ env.version }}
|
|
head_ref: ${{ github.event.pull_request.head.sha }}
|
|
prior_ref: ${{ env.prior_ref }}
|
|
|
|
- name: Update Pull Request
|
|
env:
|
|
REF_NAME: ${{ github.head_ref }}
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
PR_NUMBER=$(gh pr list --head "$REF_NAME" --json number --jq '.[0].number')
|
|
|
|
if [[ -z "$PR_NUMBER" || "$PR_NUMBER" == "null" ]]; then
|
|
echo "No PR found for branch $REF_NAME"
|
|
exit 1
|
|
fi
|
|
|
|
gh pr edit "$PR_NUMBER" --body-file pr_body.txt
|