We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49fdb6b commit df8f697Copy full SHA for df8f697
.github/workflows/triage_closed_issue_comment.yml
@@ -2,6 +2,11 @@ name: 'Triage: closed issue comment'
2
on:
3
# makes this workflow reusable
4
workflow_call:
5
+ inputs:
6
+ calling-repo:
7
+ required: true
8
+ type: string
9
+ default: 'cypress'
10
secrets:
11
ADD_TO_TRIAGE_BOARD_TOKEN:
12
required: true
@@ -21,7 +26,7 @@ jobs:
21
26
env:
22
27
GITHUB_TOKEN: ${{ secrets.ADD_TO_TRIAGE_BOARD_TOKEN }}
23
28
ORGANIZATION: 'cypress-io'
24
- REPOSITORY: 'cypress'
29
+ REPOSITORY: ${{ inputs.calling-repo }}
25
30
PROJECT_NUMBER: 9
31
ISSUE_NUMBER: ${{ github.event.issue.number }}
32
run: |
0 commit comments