Upstream changes #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upstream changes | |
on: | |
# Run at 3AM every monday | |
schedule: | |
- cron: "0 3 * * 1" | |
# Can manually be run via the Github Actions interface | |
workflow_dispatch: | |
jobs: | |
check: | |
name: "Check upstream for changes" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
- name: Check for upstream changes | |
run: ./.github/check-upstream --token ${{ secrets.GITHUB_TOKEN }} |