Skip to content

chore(deps): bump lerna from 7.3.0 to 7.3.1 #12

chore(deps): bump lerna from 7.3.0 to 7.3.1

chore(deps): bump lerna from 7.3.0 to 7.3.1 #12

Workflow file for this run

name: Dependabot auto-merge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
dependabot:

Check failure on line 9 in .github/workflows/auto-merge.yml

View workflow run for this annotation

GitHub Actions / Dependabot auto-merge

Invalid workflow file

The workflow is not valid. .github/workflows/auto-merge.yml (Line: 9, Col: 3): The workflow must contain at least one job with no dependencies.
needs: [linters]
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: Enable auto-merge for Dependabot PRs
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}