github-push-action
github-push-action copied to clipboard
GitHub actions to push back to repository eg. updated code
The following error can happen at random especially for jobs in parallel (matrix). This could be related to race condition. ``` Run ad-m/github-push-action@master with: branch: refs/heads/optimize-strategy-ac github_token: *** directory: ....
**TODO:** - [x] Adjust the documentation **fix:** #191
The change adds only push tags support Fix #153
### Rationale Since the steps above the image already highlight how to view/modify the default token permission having this image would be redundant.
Pushing to a protected branch from within GitHub actions succeeded but the commit is marked as not belonging to any branch. I have the following workflow: ``` runs-on: ubuntu-latest steps:...
My repo: https://github.com/flutter-chat-dev/tic_tac_toe Error: https://github.com/flutter-chat-dev/tic_tac_toe/actions/runs/5135214398/jobs/9240329007 Workflow: ``` name: Run layerlens. on: push: branches: [ main] jobs: generate_diagrams: runs-on: ubuntu-latest steps: - name: clone the repo uses: actions/checkout@v3 - name: install...
My action : ~~~ name: foobar on: [pull_request] jobs: hello_world_job: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Get changed files id: files uses: jitterbit/get-changed-files@v1 with: format: 'space-delimited'...
Context: Was checking out multiple private repos and was copying a file from a private repos to a public repos in the workspace, then committing and pushing. The push would...
Hi, I'm trying to utilize this action as the last step in my release workflow. As part of that workflow I need to push only the tag, as I have...