You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow the use of ${{ github.actor }} attribute in the comment-text param as {{PR_ACTOR}}, for example, to identify which user has submitted a review:
on:
pull_request_review:
types: [submitted]jobs:
create-comment-in-asana-task-job:
runs-on: ubuntu-latestname: Alert new PR review in Asana Tasksteps:
- name: Create a commentuses: Asana/comment-on-task-github-action@latestid: createCommentwith:
asana-secret: ${{ secrets.ASANA_SECRET }}comment-text: "A review for PR #{{PR_ID}} has been submitted by {{PR_ACTOR}}: {{PR_URL}}"
- name: Get statusrun: echo "Status is ${{ steps.createComment.outputs.status }}"
The text was updated successfully, but these errors were encountered:
Allow the use of
${{ github.actor }}
attribute in the comment-text param as{{PR_ACTOR}}
, for example, to identify which user has submitted a review:The text was updated successfully, but these errors were encountered: