Skip to content

Commit

Permalink
Add action to sync open pull requests to Asana (#1691)
Browse files Browse the repository at this point in the history
  • Loading branch information
sammacbeth committed Feb 7, 2023
1 parent af093cd commit 30694bb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/asana.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: 'Asana Sync'
on:
pull_request_target:
types:
- opened
- edited
- closed
- reopened
- synchronize

jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: sammacbeth/action-asana-sync@v1
with:
ASANA_ACCESS_TOKEN: ${{ secrets.ASANA_ACCESS_TOKEN }}
ASANA_WORKSPACE_ID: ${{ secrets.ASANA_WORKSPACE_ID }}
ASANA_PROJECT_ID: '312629933896096'
move_to_section_id: '1138897367676525'

0 comments on commit 30694bb

Please sign in to comment.