fix(tests): fix e2e testing for email notifications on encrypt-forms #12080
Workflow file for this run
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
# Workflow to ensure PR title matches the Conventional Commits spec | |
# https://www.conventionalcommits.org/en/v1.0.0/ | |
name: 'Lint PR' | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
semantic: | |
name: Validate PR title | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v4 | |
with: | |
types: | | |
feat | |
fix | |
docs | |
style | |
refactor | |
ref | |
perf | |
test | |
build | |
ci | |
chore | |
revert | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |