File tree 3 files changed +33
-0
lines changed
3 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ # release-plz for the stable 0.2 branch
2
+
3
+ name : Release-plz v0.2
4
+
5
+ permissions :
6
+ pull-requests : write
7
+ contents : write
8
+
9
+ on :
10
+ push :
11
+ branches :
12
+ - libc-0.2
13
+
14
+ jobs :
15
+ release-plz :
16
+ name : Release-plz v0.2
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+ - name : Checkout repository
20
+ uses : actions/checkout@v4
21
+ with :
22
+ fetch-depth : 0
23
+ - name : Install Rust (rustup)
24
+ run : rustup update stable --no-self-update && rustup default stable
25
+ - name : Run release-plz
26
+
27
+ with :
28
+ command : release-pr
29
+ env :
30
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ [workspace ]
2
+ git_tag_name = " v{{ version }}"
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ edition = "2018"
5
5
authors = [" The Rust Project Developers" ]
6
6
license = " MIT OR Apache-2.0"
7
7
build = " build.rs"
8
+ publish = false
8
9
repository = " https://github.com/rust-lang/libc"
9
10
homepage = " https://github.com/rust-lang/libc"
10
11
description = """
You can’t perform that action at this time.
0 commit comments