diff --git a/.github/workflows/validate-pr-title.yaml b/.github/workflows/validate-pr-title.yaml new file mode 100644 index 000000000..b6e6fc808 --- /dev/null +++ b/.github/workflows/validate-pr-title.yaml @@ -0,0 +1,23 @@ +name: Lint PR + +on: + pull_request: + types: + - opened + - edited + - synchronize + +jobs: + main: + name: Validate PR title + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v5 + with: + scopes: | + airflow + datasets + docker + telemetry + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}