-
Notifications
You must be signed in to change notification settings - Fork 5
35 lines (32 loc) · 1.16 KB
/
release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: release
on:
workflow_dispatch:
push:
branches:
- main
- "release-**"
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
token: ${{ secrets.PAT_TOKEN }}
# optional. customize path to release-please-config.json
config-file: release-please-config.json
# optional. customize path to .release-please-manifest.json
manifest-file: .release-please-manifest.json
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Workaround for https://github.com/googleapis/release-please/issues/922
if: ${{ steps.release.outputs.pr != '' }}
run: |
echo "Closing and reopening PR to trigger checks"
gh pr close ${{ fromJSON(steps.release.outputs.pr).number }} || true
gh pr reopen ${{ fromJSON(steps.release.outputs.pr).number }} || true
gh pr merge --auto --merge ${{ fromJSON(steps.release.outputs.pr).number }} || true
env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}