mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-13 08:46:34 +00:00
abe830ffe7
* Upgrade to GitHub-native Dependabot * ci: add dependabot-auto-merge action * ci: update job name Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Matan Kushner <hello@matchai.dev>
15 lines
329 B
YAML
15 lines
329 B
YAML
name: Dependabot
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
auto_merge:
|
|
name: Auto-merge Dependabot PRs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ahmadnassri/action-dependabot-auto-merge@v2
|
|
with:
|
|
target: minor
|
|
github-token: ${{ secrets.DEPENDABOT_GITHUB_API_TOKEN }}
|