29 lines
1006 B
YAML
29 lines
1006 B
YAML
|
name: Dependabot auto-merge
|
||
|
on:
|
||
|
workflow_run:
|
||
|
workflows: ["Tests"]
|
||
|
types:
|
||
|
- completed
|
||
|
|
||
|
permissions:
|
||
|
contents: write
|
||
|
|
||
|
jobs:
|
||
|
dependabot:
|
||
|
runs-on: ubuntu-latest
|
||
|
if: ${{ github.actor == 'dependabot[bot]' && github.event.workflow_run.conclusion == 'success' && github.event_name == 'pull_request' }}
|
||
|
steps:
|
||
|
- name: Dependabot metadata
|
||
|
id: metadata
|
||
|
uses: dependabot/fetch-metadata@v1.3.4
|
||
|
with:
|
||
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
||
|
- name: Enable auto-merge for Dependabot PRs
|
||
|
# if: ${{contains(steps.metadata.outputs.dependency-names, 'pytest') && steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
|
||
|
# if: ${{contains(steps.metadata.outputs.dependency-names, 'pytest')}}
|
||
|
# ideally we auto-merge if all checks pass
|
||
|
run: gh pr merge --auto --merge "$PR_URL"
|
||
|
env:
|
||
|
PR_URL: ${{github.event.pull_request.html_url}}
|
||
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|