Skip to content

Commit

Permalink
fix: use updated mbta/github-asana-action instead
Browse files Browse the repository at this point in the history
  • Loading branch information
meagharty committed Jan 3, 2024
1 parent 7efcc15 commit 52289d2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/asana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
description: Whether to attach the PR to the Asana ticket. Requires secrets.asana-github-secret.
trigger-phrase:
type: string
default: "\\*\\*Asana Ticket:\\*\\*(?:(\\s)*\\[.*\\]\\()?"
default: "\\*\\*Asana Ticket:\\*\\*"
description: Phrase to trigger moving ticket between columns.
secrets:
asana-token:
Expand All @@ -50,7 +50,7 @@ jobs:
if: inputs.development-section != '' && needs.check-for-secrets.outputs.has-asana-token == 'yes' && (github.event.action == 'opened' || github.event.action == 'reopened') && github.actor != 'dependabot[bot]'
steps:
- name: Move ticket to In Development
uses: mbta/github-asana-action@v4.3.0
uses: mbta/github-asana-action@v4.4.0
with:
asana-pat: ${{ secrets.asana-token }}
trigger-phrase: ${{ inputs.trigger-phrase }}
Expand All @@ -61,7 +61,7 @@ jobs:
if: inputs.merged-section != '' && needs.check-for-secrets.outputs.has-asana-token == 'yes' && github.event.pull_request.merged == true && github.actor != 'dependabot[bot]'
steps:
- name: Move ticket on merge
uses: mbta/github-asana-action@v4.3.0
uses: mbta/github-asana-action@v4.4.0
with:
asana-pat: ${{ secrets.asana-token }}
trigger-phrase: ${{ inputs.trigger-phrase }}
Expand All @@ -73,7 +73,7 @@ jobs:
if: inputs.review-section != '' && needs.check-for-secrets.outputs.has-asana-token == 'yes' && github.event.action == 'review_requested' && github.actor != 'dependabot[bot]'
steps:
- name: Move ticket on review requested
uses: mbta/github-asana-action@v4.3.0
uses: mbta/github-asana-action@v4.4.0
with:
asana-pat: ${{ secrets.asana-token }}
trigger-phrase: ${{ inputs.trigger-phrase }}
Expand Down

0 comments on commit 52289d2

Please sign in to comment.