chore: bump dompurify from 3.4.12 to 3.4.13 in /frontend in the npm_and_yarn group across 1 directory #337
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: Enforce PR base branch to dev | |
| on: | |
| pull_request_target: | |
| types: [opened, edited, reopened] | |
| jobs: | |
| check-branch: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| steps: | |
| - uses: Vankka/pr-target-branch-action@v3 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| target: main | |
| exclude: dev | |
| change-to: dev | |
| comment: | | |
| PRs in this repository must target `dev`, not `main`. | |
| The base branch has been automatically changed to `dev`. Please verify there are no merge conflicts. |