mirror of
https://github.com/qwjyh/scoop_bucket.git
synced 2024-11-22 23:11:05 +09:00
18 lines
378 B
YAML
18 lines
378 B
YAML
|
on:
|
||
|
workflow_dispatch:
|
||
|
schedule:
|
||
|
# run every 4 hours
|
||
|
- cron: '20 */4 * * *'
|
||
|
name: Excavator
|
||
|
jobs:
|
||
|
excavate:
|
||
|
name: Excavate
|
||
|
runs-on: windows-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@main
|
||
|
- name: Excavate
|
||
|
uses: ScoopInstaller/GithubActions@main
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
SKIP_UPDATED: 1
|