dfhack/.github/workflows/update-submodules.yml

30 lines
704 B
YAML

2021-02-18 20:05:43 -07:00
name: Update submodules
on:
schedule:
- cron: '0 7 * * *'
workflow_dispatch:
inputs:
branch:
description: DFHack branch to update
required: false
default: develop
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Clone DFHack
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ github.event.inputs.branch }}
submodules: true
- name: Update submodules
run: |
2021-02-18 20:14:05 -07:00
git config user.name "DFHack-Urist via GitHub Actions"
git config user.email "DFHack-Urist@users.noreply.github.com"
2021-02-18 20:05:43 -07:00
if bash -x ci/update-submodules.bash; then
2021-02-18 21:22:37 -07:00
git push --recurse-submodules=check
2021-02-18 20:05:43 -07:00
fi