mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-16 08:25:28 +00:00
Add support for auto-merge action
Upcoming replacement for lack of such feature in native dependabot, needs to be tested first
This commit is contained in:
26
.github/workflows/auto-merge.yml
vendored
Normal file
26
.github/workflows/auto-merge.yml
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
name: ASF-auto-merge
|
||||
|
||||
on:
|
||||
check_suite:
|
||||
types:
|
||||
- completed
|
||||
pull_request:
|
||||
types:
|
||||
- edited
|
||||
- labeled
|
||||
- opened
|
||||
- ready_for_review
|
||||
- reopened
|
||||
- synchronize
|
||||
- unlabeled
|
||||
- unlocked
|
||||
|
||||
jobs:
|
||||
auto-merge:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Auto-merge PR if deemed appropriate
|
||||
uses: ridedott/merge-me-action@v1.6.7
|
||||
with:
|
||||
GITHUB_TOKEN: ${{ secrets.ASF_GITHUB_PERSONAL_TOKEN }}
|
||||
PRESET: DEPENDABOT_MINOR
|
||||
Reference in New Issue
Block a user