Error: Resource not accessible by integration
See original GitHub issueFor some reason I am unable to get this action to work.
My repo is public and not a fork.
I’ve also tested another action which did work but has very limited functionalities, this is why I’d like to use this action.
I also tried to include the new permission system to modify the default permissions. I tried both as job and as workflow variable. (https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions)
But generally it doesn’t seem to be a permission issue tho when looking at the log
The project is called Backlog and the column Triage
At this point I am clueless and thats why I opened this issue 😐
Also the Actions permissions
Also using a repository secret did not worked Bad credentials
This is the content of my yml. (it’s the same as the one from your example)
name: Move new issues into Triage
on:
issues:
types: [opened]
jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.7.1
with:
project: Backlog
column: Triage
repo-token: ${{ secrets.GITHUB_TOKEN }}
Let me know if there is anything else you need. Many thanks in advance!
Issue Analytics
- State:
- Created 2 years ago
- Comments:16 (5 by maintainers)
Top GitHub Comments
Also still not working here when moving new issues to a workboard.
I also reproduced with public repo and public project.
I solved it by creating and using a token with
repo
permission.Related issue