Skip to content

feat: add iframe permissions support #1256

feat: add iframe permissions support

feat: add iframe permissions support #1256

name: "Pull Request Title Validator"
on:
pull_request_target:
types:
- opened
- edited
- synchronize
- reopened
permissions:
pull-requests: read
jobs:
# Ensure PR title matches Angular Commit Guidelines
validate-pr-title:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
with:
subjectPattern: ^(?![A-Z]).+(?<!\.)$
subjectPatternError: |
The subject "{subject}" found in the pull request title "{title}"
didn't match the configured pattern. Please ensure that the subject
doesn't start with an uppercase character and doesn't end with a period.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}