Skip to content

.github/workflows/dependabot-auto-merge-caller.yaml #43

.github/workflows/dependabot-auto-merge-caller.yaml

.github/workflows/dependabot-auto-merge-caller.yaml #43

name: Auto-merge Dependabot
on:
pull_request:
types: [opened, synchronize, reopened]
schedule:
- cron: '0 9 * * *'
workflow_dispatch:
jobs:
dependabot-automerge-github-actions:
if: github.event_name != 'pull_request' || github.event.pull_request.user.login == 'dependabot[bot]'
permissions:
pull-requests: write
contents: write
issues: write
uses: theatlantic/workflows/.github/workflows/dependabot-automerge.yml@main

Check failure on line 18 in .github/workflows/dependabot-auto-merge-caller.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/dependabot-auto-merge-caller.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/dependabot-auto-merge-caller.yaml" -> "theatlantic/workflows/.github/workflows/dependabot-automerge.yml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
secrets:
AUTOMERGE_TOKEN: ${{ secrets.DEPENDABOT_AUTOMERGE_TOKEN }}
with:
allowed-ecosystems: 'github_actions'
allowed-update-types: 'minor,patch,major'
merge-method: 'squash'
days-to-wait: 10
security-fast-track: true
approve-only: false