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 42322d7 commit cb93ed6Copy full SHA for cb93ed6
.github/workflows/find-exercise-issue.yml
@@ -3,8 +3,8 @@ name: Find Exercise Issue
3
on:
4
workflow_call:
5
inputs:
6
- issue-title-prefix:
7
- description: 'Prefix to search for in issue titles'
+ issue-title-text:
+ description: 'Text to search for within issue titles'
8
required: false
9
default: 'Exercise'
10
type: string
@@ -32,7 +32,7 @@ jobs:
32
- id: find-exercise-issue
33
uses: actions/github-script@v7
34
env:
35
- ISSUE_TITLE_PREFIX: ${{ inputs.issue-title-prefix }}
+ ISSUE_TITLE_PREFIX: ${{ inputs.issue-title-text }}
36
with:
37
script: |
38
const issues = await github.rest.issues.listForRepo({
0 commit comments