-
Hello, First of all, thanks a lot for this amazing tool. I am trying to enable this in a private repo for our enterprise and ran into some errors. Hoping you can provide some guidance. Side note, I found the parameter docs to be a little confusing and wasn't sure many times what/how to add. Maybe it could use some updating with example column? Also the documentation mentions there is only 1 required parameter, i.e., the token, but seems like there are more now since you have some validations on them. ErrorData successfully retrieved. Starting report calculations. RequestError [HttpError]: Not Found Parameters UsedGITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} What else I triedWhen I tried with changing the EXECUTION_OUTCOME parameter to "markdown" (or "collection"), I don't see the error but also don't see a markdown or json returned. The action status is passed in this case. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hello, there is a mistake in Several parameters are optional. For example,
|
Beta Was this translation helpful? Give feedback.
Hello, there is a mistake in
GITHUB_REPO_FOR_ISSUE
. You need to set only repository name(internal_repo_name in your case). I think It will fix this error.Several parameters are optional. For example,
GITHUB_OWNERS_REPOS
is not required, cause you can useORGANIZATIONS
input instead of it. So, I decided to not make it required. I will update documentation to make it clearer.EXECUTION_OUTCOME
allows you to get markdown or collection as an output. You will have access to this data in next steps in your workflow. It might be useful in case you don't want to use issues for reports.