mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 04:54:03 -08:00
f166d23fc0
Bumps [sersoft-gmbh/setup-gh-cli-action](https://github.com/sersoft-gmbh/setup-gh-cli-action) from 1.0.1 to 2.0.0.
- [Release notes](https://github.com/sersoft-gmbh/setup-gh-cli-action/releases)
- [Commits](4022189b02...4d7f209ad8
)
---
updated-dependencies:
- dependency-name: sersoft-gmbh/setup-gh-cli-action
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
29 lines
941 B
YAML
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@c9c4182bf1b97f5224aee3906fd373f6b61b4526
|
|
with:
|
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
- name: install GH CLI
|
|
uses: sersoft-gmbh/setup-gh-cli-action@4d7f209ad8ceeebfd3247f24fc40d2a65434434a
|
|
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}}
|