Skip to content

Add a lockfile

Add a lockfile #1

Workflow file for this run

name: Automerge

Check failure on line 1 in .github/workflows/dependabot.yml

View workflow run for this annotation

GitHub Actions / Automerge

Invalid workflow file

The workflow is not valid. .github/workflows/dependabot.yml: (Line: 24, Col: 15, Idx: 621) - (Line: 24, Col: 68, Idx: 674): While scanning a plain scalar, find unexpected ':'.
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Enable auto-merge for Dependabot PRs
if: {{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}