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 3c6800e commit aea5ab6Copy full SHA for aea5ab6
.github/workflows/release-please.yml
@@ -0,0 +1,25 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - main
5
+
6
+permissions:
7
+ contents: write
8
+ issues: write
9
+ pull-requests: write
10
11
+name: release-please
12
13
+jobs:
14
+ release-please:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: googleapis/release-please-action@v4
18
+ with:
19
+ # this assumes that you have created a personal access token
20
+ # (PAT) and configured it as a GitHub action secret named
21
+ # `MY_RELEASE_PLEASE_TOKEN` (this secret name is not important).
22
+ token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
23
+ # this is a built-in strategy in release-please, see "Action Inputs"
24
+ # for more options
25
+ release-type: simple
0 commit comments