ci: synced file(s) with honestbank/.github #1902
This file contains 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
# yamllint disable rule:line-length | |
# Use template from https://github.com/honestbank/workflows/tree/main/examples/repository-workflows | |
# Use this workflow for public repos, since public repos cannot access our internal | |
# workflows repo. | |
--- | |
name: public-semantic-pr | |
permissions: | |
contents: write | |
pull-requests: write | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
jobs: | |
public-semantic-pr: | |
name: public-semantic-pr | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v4 | |
name: Semantic Pull Request | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |