FIX: Add parquet uint32 type to hyper file type mapping #357
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 PR Merged | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
move-asana-ticket-to_done_job: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true | |
steps: | |
- name: Github-Asana Move Ticket Action | |
uses: mbta/[email protected] | |
with: | |
asana-pat: ${{ secrets.ASANA_SECRET_FOR_MOVE_ACTION }} | |
trigger-phrase: "Asana Task:" | |
target-section: "Done" | |
mark-complete: true | |
move-asana-ticket-to_todo_job: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == false | |
steps: | |
- name: Github-Asana Move Ticket Action | |
uses: mbta/[email protected] | |
with: | |
asana-pat: ${{ secrets.ASANA_SECRET_FOR_MOVE_ACTION }} | |
trigger-phrase: "Asana Task:" | |
target-section: "To Do" |