First draft of implementation
Readme will follow
This commit is contained in:
parent
dc38b3715e
commit
932ca84352
23 changed files with 1322 additions and 1 deletions
17
.github/workflows/dependabot.yaml
vendored
Normal file
17
.github/workflows/dependabot.yaml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: Dependabot
|
||||
|
||||
on: pull_request_target
|
||||
|
||||
jobs:
|
||||
auto-merge:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.actor == 'dependabot[bot]' }}
|
||||
steps:
|
||||
- run: gh pr review --approve "$PR_URL"
|
||||
env:
|
||||
PR_URL: ${{ github.event.pull_request.html_url }}
|
||||
GITHUB_TOKEN: ${{ secrets.GIT_ACTION_TOKEN }}
|
||||
- run: gh pr merge --auto --squash "$PR_URL"
|
||||
env:
|
||||
PR_URL: ${{ github.event.pull_request.html_url }}
|
||||
GITHUB_TOKEN: ${{ secrets.GIT_ACTION_TOKEN }}
|
Loading…
Add table
Add a link
Reference in a new issue