Skip to content

Bump the dev-dependencies group with 3 updates #15

Bump the dev-dependencies group with 3 updates

Bump the dev-dependencies group with 3 updates #15

Workflow file for this run

name: "Auto-Merge Dependabot PRs"
on: [ pull_request ]
permissions:
contents: write
pull-requests: write
jobs:
ci:
name: "Run CI Workflow"
uses: ./.github/workflows/ci.yml
codeql:

Check failure on line 13 in .github/workflows/automerge.yml

View workflow run for this annotation

GitHub Actions / Auto-Merge Dependabot PRs

Invalid workflow file

The workflow is not valid. .github/workflows/automerge.yml (Line: 13, Col: 3): Error calling workflow 'ylabonte/procon-ip/.github/workflows/codeql.yml@a95a2494a6161e812436f55241c2711039fcf712'. The nested job 'analyze' is requesting 'actions: read, security-events: write', but is only allowed 'actions: none, security-events: none'.
name: "Run CodeQL Workflow"
uses: ./.github/workflows/codeql.yml
automerge:
name: "Auto-merge PR (Dependabot only!)"
needs:
- ci
- codeql
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: "Auto-merge the PRs"
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}