Bump qs from 6.5.3 to 6.5.5 in the npm_and_yarn group across 1 directory #15
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: "[master] PullRequest ensure dev" | |
| on: | |
| pull_request_target: | |
| types: [opened, edited] | |
| jobs: | |
| check-branch: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - uses: Vankka/pr-target-branch-action@v3 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| target: master | |
| exclude: dev # Don't prevent going from development -> main | |
| change-to: dev | |
| comment: | | |
| Your PR's base branch was set to `master`, PRs should be set to target the `dev` branch. | |
| The base branch of this PR has been automatically changed to `dev`, please check that there are no merge conflicts |