Push to origin from GitHub action

actions/checkout@v2 Version 2 of checkout resolves the detached HEAD state issue and simplifies pushing to origin. name: Push commit on: push jobs: report: runs-on: ubuntu-latest steps: – uses: actions/checkout@v2 – name: Create report file run: date +%s > report.txt – name: Commit report run: | git config –global user.name ‘Your Name’ git config –global user.email … Read more