Skip to content

update check

update check #530

Workflow file for this run

name: update check
on:
workflow_dispatch: {}
push:
branches:
- master
- dev
paths:
- .github/workflows/update-check.yaml
- update-check.py
pull_request:
paths:
- .github/workflows/update-check.yaml
- update-check.py
schedule:
- cron: '0 0 * * *' # runs everyday at midnight
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ssh-key: ${{secrets.COMMIT_KEY}}
- name: Check Update
run: python3 update-check.py ${{ github.event_name == 'pull_request' }}