We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5e4124 commit f368621Copy full SHA for f368621
.github/workflows/create-release-pr.yml
@@ -0,0 +1,24 @@
1
+name: Create release PR
2
+
3
+permissions:
4
+ contents: read
5
6
+on:
7
+ workflow_dispatch:
8
9
+jobs:
10
+ create-pr:
11
+ runs-on: ubuntu-latest
12
13
+ permissions:
14
+ contents: write
15
+ pull-requests: write
16
17
+ # Let's try to trigger releases only after this release PR gets merged
18
+ # so we might need to verify who the author is to do so
19
+ steps:
20
+ - uses: googleapis/release-please-action@c2a5a2bd6a758a0937f1ddb1e8950609867ed15c # v4.3.0
21
+ with:
22
+ # this is a built-in strategy in release-please, see "Action Inputs"
23
+ # for more options
24
+ release-type: node
0 commit comments