mirror of
https://github.com/brittonhayes/validate-yaml.git
synced 2024-11-23 05:30:56 -05:00
feat: added dependabot auto-merge on test pass
This commit is contained in:
parent
b16fabb912
commit
e3de9f3ede
2 changed files with 14 additions and 1 deletions
13
.github/workflows/merge.yml
vendored
Normal file
13
.github/workflows/merge.yml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
name: "automerge"
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
merge:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: ahmadnassri/action-dependabot-auto-merge@v2
|
||||
with:
|
||||
github-token: ${{ secrets.DEPENDABOT_PUBLIC_TOKEN }}
|
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -23,4 +23,4 @@ jobs:
|
|||
with:
|
||||
files: |
|
||||
__tests__/valid.yaml
|
||||
schemaPath: "__tests__/schema.json"
|
||||
schemaPath: "__tests__/schema.json"
|
Loading…
Reference in a new issue