The GitHub Actions for pushing to GitHub repository local changes authorizing using GitHub token.
An example workflow to authenticate with GitHub Platform:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
...
- run: |
...
- uses: ad-m/github-push-action@master
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
The Dockerfile and associated scripts and documentation in this project are released under the MIT License.