Skip to content

setup Dependabot for go mod #11

setup Dependabot for go mod

setup Dependabot for go mod #11

# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0
name: Dependabot auto-merge
on:
pull_request:
branches: [ main ]
permissions:
pull-requests: write
contents: write
jobs:
dependabot:

Check failure on line 11 in .github/workflows/dependabot-prs.yml

View workflow run for this annotation

GitHub Actions / Dependabot auto-merge

Invalid workflow file

The workflow is not valid. .github/workflows/dependabot-prs.yml (Line: 11, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'charlietle/opentelemetry-demo'
needs: [build_images, markdownlint, yamllint, misspell, markdownlinkcheck, sanity, checklicense]
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}