docs: update landing page to recent status #37
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Gitlint check | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| lint-commits: | |
| name: check-commit-messages | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run Gitlint Action | |
| if: ${{ github.event_name == 'pull_request' }} | |
| uses: ./.github/actions/gitlint | |
| with: | |
| pr-number: ${{ github.event.number }} | |
| base-branch: ${{ github.event.pull_request.base.ref }} |