diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 356a9f990e4290..7a5b369eb5c587 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -49,6 +49,23 @@ jobs: node-version: 10.x - name: Lint addon docs run: NODE=$(which node) make lint-addon-docs + lint-commit-message: + runs-on: ubuntu-latest + if: github.event_name == 'pull_request' + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Lints message of the first commit in this pull request + continue-on-error: true + run: bash -x tools/lint-pr-commit-message.sh ${{ github.event.number }} || echo ::set-env name=needs_fixup::true + - name: Label on commit message lint failure + if: env.needs_fixup == 'true' + uses: actions/github@v1.0.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + args: label "needs commit message fix" lint-cpp: runs-on: ubuntu-latest steps: