oh-my-posh/.github/workflows/dependabot.yml
dependabot[bot] 9537e1221b chore(deps): bump dependabot/fetch-metadata from 1.5.0 to 1.5.1
Bumps [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) from 1.5.0 to 1.5.1.
- [Release notes](https://github.com/dependabot/fetch-metadata/releases)
- [Commits](28a846a119...cd6e996708)

---
updated-dependencies:
- dependency-name: dependabot/fetch-metadata
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-05-25 01:09:16 +00:00

29 lines
941 B
YAML

name: Dependabot auto-merge
on:
pull_request:
types: [opened, reopened]
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@cd6e996708b8cfe0b639401134a3b9a3177be7b2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: install GH CLI
uses: sersoft-gmbh/setup-gh-cli-action@4022189b02796671e17d07f27c496713d09cb3a7
with:
version: stable
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}