Skip to content

Commit

Permalink
Add Asana Git Action (#4497)
Browse files Browse the repository at this point in the history
# Code Task Complete ⚡️

✨ View the Asana Task
[here](https://app.asana.com/0/0/1205968523756474/f) ✨

## Description of Changes

Adds the Asana Git action to sync PR details to Asana task

## Additional Info

Open the Asana task above to verify it picked up the PR info.
  • Loading branch information
JKarlavige authored Nov 16, 2023
2 parents 503bb63 + 84c9377 commit 119499d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/asana-connection.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Show PR Status in Asana
on:
pull_request:
types: [opened, reopened]

jobs:
create-asana-attachment-job:
runs-on: ubuntu-latest
name: Create pull request attachments on Asana tasks
steps:
- name: Create pull request attachments
uses: Asana/create-app-attachment-github-action@latest
id: postAttachment
with:
asana-secret: ${{ secrets.ASANA_SECRET }}
- name: Log output status
run: echo "Status is ${{ steps.postAttachment.outputs.status }}"

0 comments on commit 119499d

Please sign in to comment.