Auto Update #960
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: Auto Update | |
on: | |
schedule: | |
- cron: "0 8 * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Run a one-line script | |
run: bash ./host.sh | |
- name: Git Auto Commit | |
uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Auto Update | |
branch: master | |
commit_options: '--no-verify --signoff' | |
repository: . | |
commit_user_name: FusionPlmH | |
commit_user_email: [email protected] | |
push_options: '--force' |