diff --git a/.github/workflows/lint-pr-title.yml b/.github/workflows/lint-pr-title.yml new file mode 100644 index 0000000..885964c --- /dev/null +++ b/.github/workflows/lint-pr-title.yml @@ -0,0 +1,20 @@ +name: Lint PR title + +on: + pull_request: + types: + - opened + - edited + - synchronize + - reopened + branches: + - main + +jobs: + lint-pr-title: + runs-on: ubuntu-latest + steps: + - uses: grafana/shared-workflows/actions/lint-pr-title@main + env: + GITHUB_TOKEN: ${{ github.token }} +