Bump the github-actions-dependencies group across 1 directory with 16 updates #69
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: Semantic Pull Request | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| - synchronize | |
| merge_group: | |
| branches: ["main"] | |
| types: [checks_requested] | |
| jobs: | |
| lint: | |
| name: Validate PR title | |
| permissions: | |
| pull-requests: read | |
| runs-on: depot-ubuntu-24.04 | |
| steps: | |
| - name: Complete merge group check | |
| if: github.event_name == 'merge_group' | |
| run: echo "Semantic PR title validation is handled on pull requests." | |
| - name: Check title | |
| if: github.event_name == 'pull_request' | |
| uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |