Check if Warehouse is up to date with newest game updates #401
This file contains hidden or 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: Check if Warehouse is up to date with newest game updates | |
| # Controls when the action will run. | |
| on: | |
| schedule: | |
| - cron: '30 8 * * *' | |
| workflow_dispatch: # Allows you to run this workflow manually from the Actions tab | |
| jobs: | |
| build: | |
| # The type of runner that the job will run on | |
| runs-on: ubuntu-slim | |
| steps: | |
| # 1. Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - name: Checkout Repository | |
| uses: actions/checkout@v6 | |
| # 2. Set up the newest Python 3 version | |
| - name: Set up Python 3 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.14' | |
| # 3. Install the newest Git client | |
| - name: Install newest PyGithub | |
| run: | | |
| pip install PyGithub | |
| # 5. Run your Python script | |
| - name: Check game updates, look at result here | |
| run: python CheckUpdate.py |