From 9d5c095e7ffe9c6d30c9108c03ec40e108e6529b Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Sun, 5 Apr 2026 06:34:20 +0200 Subject: [PATCH] chore(actions): Use committed to check pr commits --- .gitea/workflows/committed.yaml | 19 +++++++++++++++++++ 1 file changed, 19 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..cc40232 --- /dev/null +++ b/.gitea/workflows/committed.yaml @@ -0,0 +1,19 @@ +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 }}..HEAD"