File tree Expand file tree Collapse file tree 2 files changed +54
-0
lines changed Expand file tree Collapse file tree 2 files changed +54
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Open release pr
2
+
3
+ permissions :
4
+ pull-requests : write
5
+ contents : write
6
+
7
+ on : workflow_dispatch
8
+
9
+ jobs :
10
+ release-plz :
11
+ name : Release-plz
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Checkout repository
15
+ uses : actions/checkout@v4
16
+ with :
17
+ fetch-depth : 0
18
+ - name : Install Rust toolchain
19
+ uses : dtolnay/rust-toolchain@stable
20
+ - name : Run release-plz
21
+
22
+ with :
23
+ command : release-pr
24
+ env :
25
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ name : Release-plz
2
+
3
+ permissions :
4
+ pull-requests : write
5
+ contents : write
6
+
7
+ on :
8
+ push :
9
+ branches :
10
+ - main
11
+
12
+ jobs :
13
+ release-plz :
14
+ name : Release-plz
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - name : Checkout repository
18
+ uses : actions/checkout@v4
19
+ with :
20
+ fetch-depth : 0
21
+ - name : Install Rust toolchain
22
+ uses : dtolnay/rust-toolchain@stable
23
+ - name : Run release-plz
24
+
25
+ with :
26
+ command : release
27
+ env :
28
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
29
+ CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
You can’t perform that action at this time.
0 commit comments