name:Has the Milky Way collided with the Andromeda Galaxy?# daily jobon:schedule:-cron:00***# A workflow run is made up of one or more jobs that can run sequentially or in paralleljobs:# This workflow contains a single job called "build"build:# The type of runner that the job will run onruns-on:ubuntu-latest# Steps represent a sequence of tasks that will be executed as part of the jobsteps:# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it-uses:actions/checkout@v2# Setup git-name:Setup Git Infomationrun:| git config --global user.name 'user'
git config --global user.email 'email'# Record (use record.sh or record2.sh)-name:Recordingrun:| sh ./record.sh-name:Pushingrun:| git push https://${{github.actor}}:${{secrets.GITHUB_TOKEN}}@github.com/${{github.repository}}.git HEAD:${{ github.ref }} || echo "No changes to commit"