-
-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: Resource not accessible by integration #239
Comments
got this same error when using GitHub Enterprise version |
any solution for this? |
Got it working for our enterprise with
|
To fix and resolve: Go to the effected GitHub repository to where the error is happening |
Here's my solution. The following error occurred in the Error: Resource not accessible by integration As mentioned in the README, you additionally grant # .github/workflows/release.yml
permissions:
contents: read
actions: read
jobs:
main-job:
# ... omitted for brevity ...
notification:
runs-on: [self-hosted, linux]
needs: [main-job]
steps:
- name: Slack Notification
uses: 8398a7/action-slack@v3
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
status: custom
fields: repo,commit,message,author,action,eventName,ref,workflow,job,took
custom_payload: |
# ... omitted for brevity ... Even without write permission in Workflow permissions section in repository settings, it works well just by granting ![]() |
Hi
I am using V3.15.1 and getting the following error. We have the GitHub Enterprise version.
Error: Resource not accessible by integration
and this is the configuration
Can you help us to resolve the issue? Thanks
The text was updated successfully, but these errors were encountered: