Skip to content

Commit 3652158

Browse files
committed
fix(examples): fix YAML syntax error for MAINTAINERS environment variable fallback
1 parent 6cee6e8 commit 3652158

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/workflows/issue-cleanup/gemini-issue-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
uses: 'actions/github-script@v7'
7272
env:
7373
ISSUE_NUMBER: '${{ matrix.issue_number }}'
74-
MAINTAINERS: "${{ inputs.maintainers || vars.MAINTAINERS || ' }}"
74+
MAINTAINERS: '${{ inputs.maintainers || vars.MAINTAINERS }}'
7575
with:
7676
script: |-
7777
const issueNumber = parseInt(process.env.ISSUE_NUMBER, 10);

0 commit comments

Comments
 (0)