feat: add attestion support for GA release of trustee and CoCo on azure #207
Workflow file for this run
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: "Lint PR title" | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| branches: | |
| - 'main' | |
| - 'develop' | |
| jobs: | |
| lint: | |
| if: ${{ github.head_ref != 'develop' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: npm install @commitlint/cli @commitlint/config-conventional | |
| - name: Validate PR title | |
| run: | | |
| PR_TITLE=$(jq -r '.pull_request.title' "$GITHUB_EVENT_PATH") | |
| echo "$PR_TITLE" | npx commitlint --config commitlint.config.js |