-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update asana integation to use shared workflow
- Loading branch information
Showing
1 changed file
with
17 additions
and
34 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,21 @@ | ||
name: Asana integration for Github PRs | ||
on: | ||
name: Asana integration for GitHub PRs | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: [closed, edited, opened, reopened] | ||
types: [review_requested, closed, opened, reopened, converted_to_draft, edited, ready_for_review] | ||
pull_request_review: | ||
types: [submitted] | ||
|
||
jobs: | ||
move-to-merged-asana-ticket-job: | ||
runs-on: ubuntu-latest | ||
if: github.event.pull_request.merged == true | ||
steps: | ||
- name: Github-Asana action from Insurify | ||
uses: insurify/[email protected] | ||
with: | ||
asana-pat: ${{ secrets.ASANA_PERSONAL_ACCESS_TOKEN }} | ||
trigger-phrase: "\\*\\*Asana Ticket:\\*\\*" | ||
targets: '[{"project": "TRC - Sprint", "section": "Merged / Not Deployed"}]' | ||
move-to-in-review-asana-ticket-job: | ||
runs-on: ubuntu-latest | ||
if: github.event.pull_request.merged != true | ||
steps: | ||
- name: Github-Asana action from Insurify | ||
uses: insurify/[email protected] | ||
with: | ||
asana-pat: ${{ secrets.ASANA_PERSONAL_ACCESS_TOKEN }} | ||
trigger-phrase: "\\*\\*Asana Ticket:\\*\\*" | ||
targets: '[{"project": "TRC - Sprint", "section": "In Review"}]' | ||
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_GITHUB_INTEGRATION_SECRET }} | ||
- name: Log output status | ||
run: echo "Status is ${{ steps.postAttachment.outputs.status }}" | ||
call-workflow: | ||
uses: mbta/workflows/.github/workflows/asana.yml@main | ||
with: | ||
development-section: "In Development" | ||
review-section: "Pending Review" | ||
merged-section: "Merged / Not Deployed" | ||
approved-section: "Approved / Not Merged" | ||
trigger-phrase: "\\*\\*Asana Ticket:\\*\\*" | ||
attach-pr: true | ||
secrets: | ||
asana-token: ${{ secrets.ASANA_PERSONAL_ACCESS_TOKEN }} | ||
github-secret: ${{ secrets.ASANA_GITHUB_INTEGRATION_SECRET }} |