mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2025-01-19 06:33:04 +01:00
2d805feb4f
Took 9 minutes
20 lines
404 B
YAML
20 lines
404 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@v3
|
|
|
|
- name: Run update script
|
|
run: ./update.sh
|
|
shell: bash
|