We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60ca263 commit 50b2b1aCopy full SHA for 50b2b1a
2 files changed
.github/workflows/release-plz.yml
@@ -0,0 +1,22 @@
1
+name: 🔁 Update Release PR
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+jobs:
7
+ release-plz:
8
+ name: Release-plz
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout repository
12
+ uses: actions/checkout@v4
13
+ with:
14
+ fetch-depth: 0
15
+ token: ${{ secrets.RELEASE_PLZ_TOKEN }}
16
+ - name: Run release-plz
17
+ uses: MarcoIeni/release-plz-action@v0.5
18
19
+ command: release-pr
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }}
22
+ CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
release-plz.toml
@@ -0,0 +1,7 @@
+[workspace]
+dependencies_update = true
+git_release_enable = false
+publish = false
+git_tag_enable = true
+pr_labels = ["release"]
+semver_check = false
0 commit comments