Skip to content

Bump braces, nuxt and webpack #1862

Bump braces, nuxt and webpack

Bump braces, nuxt and webpack #1862

Workflow file for this run

name: automerge
on:
pull_request:
types:
- labeled
- unlabeled
- synchronize
- opened
- edited
- ready_for_review
- reopened
- unlocked
pull_request_review:
types:
- submitted
check_suite:
types:
- completed
status: {}
pull_request_target:
workflow_run:
workflows: [Build, Test, Run tests]
types: [completed]
branches-ignore:
- master
- main
jobs:
automerge-snyk:
# https://github.com/dependabot/dependabot-core/issues/3253#issuecomment-797125425
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
if: ${{github.event_name != 'pull_request_target' && startsWith(github.event.pull_request.title, '[Snyk]')}}
runs-on: ubuntu-latest
steps:
- name: automerge Snyk
uses: "pascalgn/[email protected]"
env:
GITHUB_TOKEN: "${{secrets.USER_GITHUB_TOKEN}}"
MERGE_FORKS: false
MERGE_DELETE_BRANCH: true
MERGE_FILTER_AUTHOR: hakatashi
MERGE_LABELS: ''
MERGE_RETRY_SLEEP: 30000
MERGE_RETRIES: 10
automerge-dependabot:
# https://github.com/dependabot/dependabot-core/issues/3253#issuecomment-797125425
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
if: ${{(github.event_name == 'workflow_run' || github.event_name == 'pull_request_target') && github.actor == 'dependabot[bot]'}}
runs-on: ubuntu-latest
steps:
- name: automerge Dependabot
uses: "pascalgn/[email protected]"
env:
GITHUB_TOKEN: "${{secrets.USER_GITHUB_TOKEN}}"
MERGE_FORKS: false
MERGE_DELETE_BRANCH: true
MERGE_FILTER_AUTHOR: ''
MERGE_LABELS: dependencies
MERGE_RETRY_SLEEP: 30000
MERGE_RETRIES: 10