Pull Request Reviewed -> Sync With Asana #3293
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pull Request Reviewed -> Sync With Asana | |
| on: | |
| pull_request_review: | |
| types: [submitted] | |
| jobs: | |
| pr-reviewed: | |
| name: Add PR reviewed comment | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout native actions repo | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: v1.9 | |
| # Do not change the below path (downstream actions expect it) | |
| path: native-github-asana-sync | |
| repository: duckduckgo/native-github-asana-sync | |
| - name: Trigger PR review workflow | |
| uses: ./native-github-asana-sync/.github/actions/pr-review-notifications | |
| with: | |
| trigger-phrase: "Task/Issue URL:" | |
| asana_pat: ${{ secrets.ASANA_ACCESS_TOKEN }} |