Skip to content

Commit 03ff059

Browse files
committed
chore: release-plz, dependabot, bevy features
1 parent 11b1987 commit 03ff059

File tree

6 files changed

+43
-216
lines changed

6 files changed

+43
-216
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,3 @@ jobs:
7373
uses: actions/checkout@v6
7474
- name: Machete
7575
uses: bnjbvr/cargo-machete@main
76-
77-
unused-features:
78-
name: Unused features
79-
runs-on: ubuntu-latest
80-
steps:
81-
- uses: actions/checkout@v6
82-
- uses: Swatinem/rust-cache@v2
83-
- uses: dtolnay/rust-toolchain@stable
84-
- run: cargo install cargo-unused-features
85-
- run: cargo-unused-features

.github/workflows/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/release-plz.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Release-plz
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
# Create a PR with the new versions and changelog, preparing the next release.
10+
release-plz-pr:
11+
name: Release-plz PR
12+
runs-on: ubuntu-latest
13+
if: ${{ github.repository_owner == 'Shuftle' }}
14+
permissions:
15+
contents: write
16+
pull-requests: write
17+
concurrency:
18+
group: release-plz-${{ github.ref }}
19+
cancel-in-progress: false
20+
steps:
21+
- *checkout
22+
- *install-rust
23+
- name: Run release-plz
24+
uses: release-plz/action@v0.5
25+
with:
26+
command: release-pr
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)