cmder/.github/workflows/vendor.yml

55 lines
1.6 KiB
YAML
Raw Normal View History

2022-10-15 20:09:57 +08:00
name: Update Vendor
on:
2022-10-15 20:18:13 +08:00
workflow_dispatch:
2022-10-15 20:09:57 +08:00
schedule:
# At 13:37 UTC every day.
- cron: '37 13 * * *'
2022-10-18 01:30:30 +08:00
2022-10-15 20:09:57 +08:00
defaults:
run:
shell: pwsh
2022-10-18 01:30:30 +08:00
2022-10-15 20:09:57 +08:00
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
2022-10-18 01:30:30 +08:00
2022-10-15 20:09:57 +08:00
- run: |
2022-10-18 01:30:30 +08:00
$currentVersion = (Get-Content .\vendor\sources.json | ConvertFrom-Json)
. .\scripts\update.ps1 -verbose
Set-GWVariable -Name COUNT_UPDATED -Value $count
$newVersion = (Get-Content .\vendor\sources.json | ConvertFrom-Json)
$listUpdated = ""
$updateMessage = ""
for ($s in $newVersion) {
$oldVersion = ($currentVersion | Where-Object {$_.name -eq $s.name}).version
if ($s.version -ne $oldVersion) {
$listUpdated += "$($s.name), "
$updateMessage += "**$($s.name)** ($oldVersion → **$($s.version)**)<br/>"
}
}
Set-GWVariable -Name $listUpdated -Value $listUpdated.Trim(', ')
Set-GWVariable -Name UPDATE_MESSAGE -Value $updateMessage
2022-10-15 20:09:57 +08:00
- uses: peter-evans/create-pull-request@v4
with:
2022-10-18 01:30:30 +08:00
title: 'Updates to `${{ env.COUNT_UPDATED }}` vendored dependencies'
body: '### Automatically updated `${{ env.COUNT_UPDATED }}` dependencies`n${{ env.UPDATE_MESSAGE }}'
commit-message: 'Update vendored dependencies (${{ env.LIST_UPDATED }})'
2022-10-15 20:09:57 +08:00
branch: update-vendor
base: master