From aa1601e75185bab23b233142f732607f824b6d4a Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Wed, 9 Apr 2025 17:17:55 +0200 Subject: [PATCH] ci: add pull request linting workflow configuration --- .gitea/workflows/pr.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitea/workflows/pr.yml diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml new file mode 100644 index 0000000..c16a160 --- /dev/null +++ b/.gitea/workflows/pr.yml @@ -0,0 +1,13 @@ +name: "Lint Pull Request" + +on: + pull_request: + +jobs: + lint: + name: Lint Pr Title + runs-on: ubuntu-latest + + steps: + - name: Lint + uses: https://git.kjan.de/actions/pull-request-lint@main