2 Commits

Author SHA1 Message Date
Dreaded_X 31fdcd0080 chore(actions): Use commited to check pr commits
Committed / committed (pull_request) Failing after 33s
CI / prek (pull_request) Has been cancelled
CI / cargo shear (pull_request) Has been cancelled
2026-04-05 07:32:49 +02:00
Dreaded_X 031ccb890e chore(actions): Cancel in-progress ci runs when pushing to pr 2026-04-05 06:32:10 +02:00
2 changed files with 24 additions and 0 deletions
+4
View File
@@ -7,6 +7,10 @@ on:
- "*"
pull_request:
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
prek:
name: prek
+20
View File
@@ -0,0 +1,20 @@
name: Committed
on:
pull_request:
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
committed:
name: committed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: crate-ci/committed@master
with:
commits: "${{ GITHUB_BASE_REF }}..${{ GITHUB_HEAD_REF }}"
args: "-vvvv --no-merge-commit"