## Description * Moves auto-merge to the correct `.github/workflows/` dir ## Type of change <!--- Please check the type of change your PR introduces: ---> - [ ] 🌻 Feature - [ ] 🐛 Bugfix - [ ] 🗺️ Documentation - [ ] 🤖 Test - [ ] 💻 CI/Deployment - [x] 🐹 Trivial/Minor ## Issue(s) <!-- Can reference multiple issues. Use one of the following "magic words" - "closes, fixes" to auto-close the Github issue. --> N/A ## Test Plan <!-- How will this be tested prior to merging.--> - [x] 💪 Manual - [ ] ⚡ Unit test - [ ] 💚 E2E
16 lines
398 B
YAML
16 lines
398 B
YAML
name: auto-merge
|
|
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- "src/**" # prevent auto-merge for go dependencies
|
|
|
|
jobs:
|
|
auto-merge:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ahmadnassri/action-dependabot-auto-merge@v2 # https://github.com/marketplace/actions/dependabot-auto-merge
|
|
with:
|
|
github-token: ${{ secrets.DEPENDABOT_TOKEN }}
|