Push issue
See original GitHub issueOk, I may be being really dumb here but
I get permission denied
my workflow file:
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Main Checkout
- uses: actions/checkout@v2
name: Secondary Checkout
with:
repository: sabuto/bot-test2
path: bot-test2
- name: move file to other repo
run: \cp -Rv .github/sabubot.yml bot-test2/.github/sabubot.yml
- name: commit to local
run: |
cd bot-test2
git config --local user.email "robe_dunne@hotmail.com"
git config --local user.name "sabuto"
git add .
git commit -m "Add changes"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_PSA }}
repository: sabuto/bot-test2
I have the psa key setup in the repo that is triggering the workflow
which is a personal access token with all rights.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:12
- Comments:11 (2 by maintainers)
Top Results From Across the Web
What is the meaning of "What does "push the issue" mean?"?
It's like "to press the issue", and it means to give something more importance, to insist, in order to act on it and...
Read more >to push the issue definition | Reverso - Reverso Dictionary
push · 1 when tr, often foll by: off, away, etc. to apply steady force to (something) in order to move it ·...
Read more >How can I solve "push" issue? [duplicate] - Stack Overflow
Error encountered while pushing branch to the remote repository: rejected Updates were rejected because the tip of your current branch is behind ...
Read more >Pushing commits to a remote repository - GitHub Docs
Use git push to push commits made on your local branch to a remote repository. ... To push a single tag, you can...
Read more >push the issue | English examples in context - Ludwig
High quality example sentences with “push the issue” in context from reliable sources - Ludwig is the linguistic search engine that helps you...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
For anyone suffering this issue, this might be the
actions/checkout@v2
to blame. The default setting forcheckout
cannot work withpush
. To make them work together, you need to specify following parameters forcheckout
:@organizejs , missing
with
. Let’s try: