add vendor dependency check action

This commit is contained in:
David Refoua 2022-10-15 15:39:57 +03:30 committed by GitHub
parent a49921bb1b
commit 1c4a8b3ff5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

39
.github/workflows/vendor.yml vendored Normal file
View File

@ -0,0 +1,39 @@
name: Update Vendor
on:
schedule:
# At 13:37 UTC every day.
- cron: '37 13 * * *'
defaults:
run:
shell: pwsh
permissions:
contents: read
jobs:
vendor:
runs-on: windows-latest
continue-on-error: false
timeout-minutes: 15
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: |
# TODO
- uses: peter-evans/create-pull-request@v4
with:
title: 'Actions: Updates to the vendored dependencies'
body: 'Automatic changes'
commit-message: 'Update vendored dependencies'
branch: update-vendor
base: master