1 2 3 4 5 6 7 8 9 10 11 12 13
name: example on: push jobs: example: runs-on: ubuntu-latest steps: - uses: actions/[email protected] - run: | git config --global user.name '<user.name>' git config --global user.email '<user.email>' git add . git commit -snm "<commit message>" || true git push origin <branch> || true