We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6a3cf71 + f39994a commit 4db56bdCopy full SHA for 4db56bd
action.yaml
@@ -82,7 +82,8 @@ runs:
82
steps:
83
- env:
84
CLASSIFIER: ${{ inputs.classifier }}
85
- COMMENT: '<!--direct-actions/pr-comment:key:${{ inputs.key }}-->${{ inputs.comment }}'
+ COMMENT: ${{ inputs.comment }}
86
+ COMMENT_KEY: ${{ inputs.key }}
87
GITHUB_TOKEN: ${{ inputs.token }}
88
OPERATION: ${{ inputs.operation }}
89
PULL_REQUEST: ${{ inputs.pull-request }}
@@ -98,6 +99,7 @@ runs:
98
99
100
ALL_COMMENTS=$(mktemp)
101
CLASSIFIER="$(tr '[a-z]' '[A-Z]' <<< "$CLASSIFIER")"
102
+ COMMENT='<!--direct-actions/pr-comment:key:'"${COMMENT_KEY}-->"$'\n'"${COMMENT}"
103
COMMENTS=$(mktemp)
104
ERROR=$(mktemp)
105
0 commit comments