Update action name
3 files changed
tree: 72f7aa900ce24d8082d40b721bd697b90d5a94b9
  1. .github/
  2. action.yml
  3. Dockerfile
  4. LICENSE
  5. README.md
  6. start.sh
README.md

GitHub Action for GitHub Push

The GitHub Actions for pushing to GitHub repository local changes authorizing using GitHub token.

Usage

Example Workflow file

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 }}

License

The Dockerfile and associated scripts and documentation in this project are released under the MIT License.