Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add asana.yml GitHub workflow #8

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .github/workflows/asana.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# DO NOT EDIT: BEGIN
# This snippet has been inserted automatically by mobsuccessbot, do not edit!
# If changes are needed, update the action asana in
# https://github.com/mobsuccess-devops/github-mobsuccess-policy
name: Asana

on:
merge_group:
types:
- checks_requested

pull_request:
types:
- assigned
- unassigned
- review_requested
- review_request_removed
- opened
- synchronize
- closed
- edited
- converted_to_draft
- ready_for_review

pull_request_review:
types:
- submitted
- edited
- dismissed

jobs:
Asana:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: mobsuccess-devops/github-actions-asana@master
with:
asana-pat: ${{ secrets.ASANA_PAT }}
github-token: ${{ github.token }}
action: "synchronize"
amplify-uri: ${{ secrets.AWS_AMPLIFY_URI }}${{ vars.AWS_AMPLIFY_URI }}
storybook-amplify-uri: ${{ secrets.AWS_STORYBOOK_AMPLIFY_URI }}${{ vars.AWS_STORYBOOK_AMPLIFY_URI }}
# DO NOT EDIT: END
Loading