Skip to content

Commit df8f697

Browse files
author
Ben M
authored
chore: add repo as a parameter to handle issues outside of cypress (#25908)
1 parent 49fdb6b commit df8f697

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/triage_closed_issue_comment.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: 'Triage: closed issue comment'
22
on:
33
# makes this workflow reusable
44
workflow_call:
5+
inputs:
6+
calling-repo:
7+
required: true
8+
type: string
9+
default: 'cypress'
510
secrets:
611
ADD_TO_TRIAGE_BOARD_TOKEN:
712
required: true
@@ -21,7 +26,7 @@ jobs:
2126
env:
2227
GITHUB_TOKEN: ${{ secrets.ADD_TO_TRIAGE_BOARD_TOKEN }}
2328
ORGANIZATION: 'cypress-io'
24-
REPOSITORY: 'cypress'
29+
REPOSITORY: ${{ inputs.calling-repo }}
2530
PROJECT_NUMBER: 9
2631
ISSUE_NUMBER: ${{ github.event.issue.number }}
2732
run: |

0 commit comments

Comments
 (0)