Update #64
This file contains 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: Update | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
container: debian:bookworm | |
env: | |
GH_TOKEN: ${{ github.token }} | |
steps: | |
- name: Install dependencies | |
run: | | |
apt-get update && apt-get install --yes --no-install-recommends python3 git gh | |
- uses: actions/checkout@v3 | |
- name: Run update | |
run: | | |
gh repo set-default wikimedia/mediawiki-docker | |
git checkout -b auto-update | |
./update.py --commit --pr |