Skip to content

FIX: loop in shutdown code rewritten to work properly #1490

FIX: loop in shutdown code rewritten to work properly

FIX: loop in shutdown code rewritten to work properly #1490

name: dependabot automerge
on:
pull_request:
workflow_dispatch:
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@v2
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'}}

Check warning on line 21 in .github/workflows/dependabot-automerge.yml

View workflow run for this annotation

GitHub Actions / dependabot automerge

Workflow syntax warning

.github/workflows/dependabot-automerge.yml (Line: 21, Col: 13): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}