Skip to content

Commit 10e5555

Browse files
authored
[CRCR] Fix wrong parsing value in action.yml (#8209)
When GitHub parses action templates, it evaluates the `${{}}` expressions within the string, even the input description. However, the `inputs:` scope doesn't have a job context (`job.status` only exists in `runs.steps`). Therefore, it will raise an error when using this action. - #8173 cc @atalman @subinz1
1 parent 4c7cc15 commit 10e5555

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • .github/actions/cross-repo-ci-relay-callback

.github/actions/cross-repo-ci-relay-callback/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ inputs:
1919
conclusion:
2020
description: >
2121
Conclusion of the workflow run, passed through to the check run as-is
22-
(typically "${{ job.status }}"). Required when status is "completed" and
22+
(typically "job.status"). Required when status is "completed" and
2323
must be a value GitHub accepts (e.g. success, failure, cancelled). Ignored
2424
when status is "in_progress".
2525
required: false

0 commit comments

Comments
 (0)