Skip to content

Commit cb93ed6

Browse files
refactor: rename issue-title-prefix to issue-title-text in find-exercise-issue workflow
1 parent 42322d7 commit cb93ed6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/find-exercise-issue.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Find Exercise Issue
33
on:
44
workflow_call:
55
inputs:
6-
issue-title-prefix:
7-
description: 'Prefix to search for in issue titles'
6+
issue-title-text:
7+
description: 'Text to search for within issue titles'
88
required: false
99
default: 'Exercise'
1010
type: string
@@ -32,7 +32,7 @@ jobs:
3232
- id: find-exercise-issue
3333
uses: actions/github-script@v7
3434
env:
35-
ISSUE_TITLE_PREFIX: ${{ inputs.issue-title-prefix }}
35+
ISSUE_TITLE_PREFIX: ${{ inputs.issue-title-text }}
3636
with:
3737
script: |
3838
const issues = await github.rest.issues.listForRepo({

0 commit comments

Comments
 (0)