From e807c3ddb83bc28f1a1830d318b9005e8630394e Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Wed, 9 Apr 2025 18:40:14 +0200 Subject: [PATCH] build: update pull request lint workflow configuration --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a2e4f87..3e3bf1e 100644 --- a/README.md +++ b/README.md @@ -11,14 +11,18 @@ name: Pull Request Lint on: pull_request: - types: [opened, edited, synchronize] + types: [opened, edited, reopened, synchronize] jobs: lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: your-org/pull-request-lint@main + - name: Install go + uses: actions/setup-go@v5 + with: + go-version: 1.24.2 + - uses: https://git.kjan.de/actions/pull-request-lint@main ``` ## Validation Rules @@ -34,4 +38,4 @@ The action enforces the following Conventional Commits rules for PR titles: ## License -See [LICENSE](LICENSE) file for details. \ No newline at end of file +See [LICENSE](LICENSE) file for details.