mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2024-11-10 04:37:23 +01:00
25 lines
514 B
YAML
25 lines
514 B
YAML
|
name: Check Update
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "0 * * * *"
|
||
|
workflow_dispatch:
|
||
|
inputs:
|
||
|
desc:
|
||
|
description: "desc"
|
||
|
required: false
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'factoriotools/factorio-docker')
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
with:
|
||
|
token: ${{ secrets.REPO_TOKEN }}
|
||
|
|
||
|
- name: Run update script
|
||
|
run: ./update.sh
|
||
|
shell: bash
|