Skip to content

Commit 1103c5c

Browse files
tgross35AkhilTThomas
authored andcommitted
Merge pull request rust-lang#3823 from tgross35/release-plz-0.2
Add `release-plz` for the 0.2 branch
2 parents 2325fb2 + eed9df5 commit 1103c5c

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/publish_0.2.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
uses: MarcoIeni/release-plz-action@v0.5
27+
with:
28+
command: release-pr
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)