2023-09-02 13:46:02 +00:00
|
|
|
name: dependabot
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request: {}
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
pull-requests: write
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
dependabot: # https://tinyurl.com/e69djmen
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: ${{ github.actor == 'dependabot[bot]' }}
|
|
|
|
steps:
|
2024-04-02 05:49:17 +00:00
|
|
|
- uses: dependabot/fetch-metadata@v2
|
2023-09-02 13:46:02 +00:00
|
|
|
id: metadata
|
|
|
|
with: {github-token: "${{ secrets.GITHUB_TOKEN }}"}
|
|
|
|
|
|
|
|
- name: Enable auto-merge for Dependabot PRs
|
2023-10-02 08:30:56 +00:00
|
|
|
if: ${{ contains(fromJSON('["version-update:semver-minor", "version-update:semver-patch"]'), steps.metadata.outputs.update-type) }}
|
2023-09-02 13:46:02 +00:00
|
|
|
run: gh pr merge --auto --merge "$PR_URL"
|
2023-10-05 07:15:01 +00:00
|
|
|
continue-on-error: true
|
2023-09-02 13:46:02 +00:00
|
|
|
env:
|
|
|
|
PR_URL: ${{ github.event.pull_request.html_url }}
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|