mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2025-01-16 13:13:07 +01:00
25a283ad79
related #526
22 lines
461 B
YAML
22 lines
461 B
YAML
name: Check Update
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 * * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'factoriotools/factorio-docker')
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.REPO_TOKEN }}
|
|
|
|
- name: Run update script
|
|
run: ./update.sh
|
|
shell: bash
|