Skip to content

Bump ch.qos.logback:logback-classic from 1.5.13 to 1.5.14 #52

Bump ch.qos.logback:logback-classic from 1.5.13 to 1.5.14

Bump ch.qos.logback:logback-classic from 1.5.13 to 1.5.14 #52

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

Check failure on line 9 in .github/workflows/dependabot_automerge.yml

View workflow run for this annotation

GitHub Actions / Dependabot auto-merge

Invalid workflow file

The workflow is not valid. .github/workflows/dependabot_automerge.yml (Line: 9, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: [ "build", "analyze" ] # After the E2E and build jobs, if one of them fails, it won't merge the PR.
if: github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'
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: contains(steps.metadata.outputs.dependency-names, 'jdbc-influxdb') && steps.metadata.outputs.update-type == 'version-update:semver-patch'
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}