First draft of implementation

Readme will follow
This commit is contained in:
Stephan Schnabel 2023-03-03 00:08:20 +01:00
parent dc38b3715e
commit 932ca84352
Signed by: stephan.schnabel
GPG key ID: E07AF5BA239FE543
23 changed files with 1322 additions and 1 deletions

17
.github/workflows/dependabot.yaml vendored Normal file
View 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 }}