You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This feature request is as discussed in #2. This addition would be beneficial for cases where multiple issues are to be opened through multiple workflows or through multiple jobs in a single workflow (or through a matrix that creates those jobs). Therefore, issues can then be identified with the issue title that is being served as a user-provided input to the action, and just those issues' descriptions will be modified.
will create two separate issues (this may or may not be useful, but there are other contexts such as github.ref or github.run_id that are probably useful)
Alright, I implemented a solution and it can be seen here: agriyakhetarpal#1 (please read through the debugging and look through the issues on my fork for extra context)
It seems to work well – I'll clean up the changes and submit a PR here.
Description
This feature request is as discussed in #2. This addition would be beneficial for cases where multiple issues are to be opened through multiple workflows or through multiple jobs in a single workflow (or through a matrix that creates those jobs). Therefore, issues can then be identified with the issue title that is being served as a user-provided input to the action, and just those issues' descriptions will be modified.
A very crude example:
will create two separate issues (this may or may not be useful, but there are other contexts such as
github.ref
orgithub.run_id
that are probably useful)Possible implementation
This section of
action.yml
belowissue-from-pytest-log/action.yaml
Lines 59 to 73 in de159a6
can be modified to run a different GraphQL query that searches for issues with the
variable, and create/edit just those issues.
Additional context
N/A
The text was updated successfully, but these errors were encountered: