mirror of https://github.com/fafhrd91/actix-web
29 lines
675 B
YAML
29 lines
675 B
YAML
name: Semver Labeler
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: [CI]
|
|
types: [completed]
|
|
|
|
jobs:
|
|
semver-label:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: write
|
|
contents: read
|
|
env:
|
|
ACTIONS_STEP_DEBUG: true
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
ref: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
- name: Install Rust
|
|
uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c # v1.15.2
|
|
with:
|
|
toolchain: stable
|
|
|
|
- uses: JohnTitor/cargo-semver-checks@main
|
|
with:
|
|
label-prefix: B-semver-
|