Initial commit

This commit is contained in:
qwjyh 2023-01-17 18:11:16 +09:00 committed by GitHub
commit ff5c60e225
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
29 changed files with 547 additions and 0 deletions

9
bin/auto-pr.ps1 Normal file
View file

@ -0,0 +1,9 @@
param(
# overwrite upstream param
[String]$upstream = "<username>/<bucketname>:main"
)
if (!$env:SCOOP_HOME) { $env:SCOOP_HOME = Convert-Path (scoop prefix scoop) }
$autopr = "$env:SCOOP_HOME/bin/auto-pr.ps1"
$dir = "$PSScriptRoot/../bucket" # checks the parent dir
& $autopr -Dir $dir -Upstream $Upstream @Args