ci: update Asana attachment workflow #652
Workflow file for this run
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
name: Move Asana ticket after merge | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
move-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_SECRET_FOR_INSURIFY_ACTION }} | |
trigger-phrase: "\\*\\*Asana task\\*\\*:" | |
targets: '[{"project": "Screens Dev - Sprint", "section": "Ready to Deploy"}]' |