mirror of
https://github.com/cmderdev/cmder.git
synced 2025-01-11 00:39:08 +08:00
add vendor dependency check action
This commit is contained in:
parent
a49921bb1b
commit
1c4a8b3ff5
39
.github/workflows/vendor.yml
vendored
Normal file
39
.github/workflows/vendor.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user