Skip to content

Commit

Permalink
ci: use release-plz
Browse files Browse the repository at this point in the history
Signed-off-by: simonsan <[email protected]>
  • Loading branch information
simonsan committed Sep 23, 2024
1 parent 5fec1d1 commit 7cdbc4d
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 53 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Release-plz

permissions:
pull-requests: write
contents: write

on:
push:
branches:
- main

jobs:
release-plz:
name: Release-plz
if: ${{ github.repository_owner == 'rustic-rs' }}
runs-on: ubuntu-latest
steps:
- name: Generate GitHub token
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1
id: generate-token
with:
app-id: ${{ secrets.RELEASE_PLZ_APP_ID }}
private-key: ${{ secrets.RELEASE_PLZ_APP_PRIVATE_KEY }}
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
fetch-depth: 0
token: ${{ steps.generate-token.outputs.token }}
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Run release-plz
uses: MarcoIeni/release-plz-action@f7caa3f8c6302301514192fd4a83c4c56ee793a6 # v0.5
env:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
37 changes: 0 additions & 37 deletions .github/workflows/release-pr.yml

This file was deleted.

9 changes: 9 additions & 0 deletions release-plz.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# configuration spec can be found here https://release-plz.ieni.dev/docs/config

[workspace]
pr_draft = true
dependencies_update = true
# changelog_config = "cliff.toml" # Don't use this for now, as it will override the default changelog config

[changelog]
protect_breaking_commits = true
16 changes: 0 additions & 16 deletions release.toml

This file was deleted.

0 comments on commit 7cdbc4d

Please sign in to comment.