Repo Updater #55
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: Repo Updater | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: '24 19 * * *' | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup git | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
- name: Setup Java JDK | |
uses: actions/[email protected] | |
with: | |
distribution: corretto | |
java-version: 21 | |
- name: Execute update.sh | |
run: ./update.sh auto true | |
- name: Push changes to repository (if any) | |
run: git push |