Branch deployment workflow in GitHub encounters 403 errors when trying to read/write comments in PRs #30233
Answered
by
garethbrickman
garethbrickman
asked this question in
Q&A
-
Users can encounter the below permissions errors in their GitHub Actions when the Dagster+ branch deployment workflow attempts to read/write comments in PRs:
|
Beta Was this translation helpful? Give feedback.
Answered by
garethbrickman
May 23, 2025
Replies: 1 comment
-
These can be due to a permissions issue that the Dagster Cloud GitHub app integration has when it's operating within a repo that has Organization scopes rather than an individual user's repo scope where its default permissions seem to work out-of-the-box. A solution is to specify the granular permissions within the GitHub Action workflow file: permissions:
pull-requests: write
contents: read |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
garethbrickman
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
These can be due to a permissions issue that the Dagster Cloud GitHub app integration has when it's operating within a repo that has Organization scopes rather than an individual user's repo scope where its default permissions seem to work out-of-the-box.
A solution is to specify the granular permissions within the GitHub Action workflow file: