Skip to content

Commit

Permalink
Create add-asana-comment.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gwalsh311 authored Jan 10, 2024
1 parent 701205c commit 7816170
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/add-asana-comment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on:
pull_request:
types: [opened, closed, reopened]

jobs:
create-comment-in-asana-task-job:
runs-on: ubuntu-latest
name: Create a comment in Asana Task
steps:
- name: Create a comment
uses: Asana/[email protected]
id: createComment
with:
asana-secret: ${{ secrets.ASANA_SECRET }}
comment-text: "{{PR_NAME}} is {{PR_STATE}}: {{PR_URL}}"
- name: Get status
run: echo "Status is ${{ steps.createComment.outputs.status }}"

0 comments on commit 7816170

Please sign in to comment.