chore: tooling changes #362
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: Check Conventional Commits format | |
| on: | |
| pull_request_target: | |
| branches: | |
| - main | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - labeled | |
| - unlabeled | |
| merge_group: | |
| types: [checks_requested] | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| check-title: | |
| uses: CQCL/hugrverse-actions/.github/workflows/pr-title.yml@main | |
| secrets: | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
| comment-on-pr: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Comment on Pull Request | |
| uses: thollander/actions-comment-pull-request@v3 | |
| with: | |
| comment-tag: hello | |
| message: | | |
| Hello and thank you for making a PR to qnexus! :wave: | |
| A maintainer will review and run integration tests if required. |