-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 999 Bytes
/
release-please.yml
File metadata and controls
36 lines (30 loc) · 999 Bytes
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
36
name: release-please
# Open a release PR that tracks every conventional commit landing on
# main. Merging the release PR pushes a `vX.Y.Z` tag, which then triggers
# release.yml (the existing build + PyPI publish workflow). Release notes
# and the GitHub Release itself are created by release.yml; this workflow
# only owns the version bump, changelog, and tag.
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
concurrency:
group: release-please-${{ github.ref }}
cancel-in-progress: false
env:
# Match the rest of the workflows ahead of the June 2026 GHA default flip.
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
jobs:
release-please:
name: Update release PR
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
config-file: release-please-config.json
manifest-file: .release-please-manifest.json