From d75f43287d9db115866422910d555ecdae80c239 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=ED=98=84=EC=84=9D?= <103029701+pokabook@users.noreply.github.com> Date: Thu, 7 Mar 2024 15:05:54 +0900 Subject: [PATCH] Create create-asana-attachment.yml --- .github/workflows/create-asana-attachment.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/create-asana-attachment.yml diff --git a/.github/workflows/create-asana-attachment.yml b/.github/workflows/create-asana-attachment.yml new file mode 100644 index 000000000..ab4e82ebf --- /dev/null +++ b/.github/workflows/create-asana-attachment.yml @@ -0,0 +1,18 @@ +on: + pull_request: + types: [opened, reopened] + +jobs: + 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_SECRET }} + allowed-projects: | + 1206775229428904 + - name: Log output status + run: echo "Status is ${{ steps.postAttachment.outputs.status }}"