From f723de3b047623edfac74c348e3682acd1166a7c Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Sun, 5 Apr 2026 06:34:20 +0200 Subject: [PATCH] chore(actions): Use commited to check pr commits --- .gitea/workflows/committed.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/committed.yaml diff --git a/.gitea/workflows/committed.yaml b/.gitea/workflows/committed.yaml new file mode 100644 index 0000000..c20435e --- /dev/null +++ b/.gitea/workflows/committed.yaml @@ -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: "origin/${{ gitea.base_ref }}..${{ gitea.head_ref }}" + args: "-vvvv --no-merge-commit"