From d75619f26427c2d48d31111a48a2ac2c420fb313 Mon Sep 17 00:00:00 2001 From: Julian Dehm Date: Wed, 16 Oct 2024 09:00:21 +0200 Subject: [PATCH] add github issue -> asana sync --- .github/workflows/asana_sync_issues.yml | 13 +++++++++++++ changelog/_1113.md | 3 +++ 2 files changed, 16 insertions(+) create mode 100644 .github/workflows/asana_sync_issues.yml create mode 100644 changelog/_1113.md diff --git a/.github/workflows/asana_sync_issues.yml b/.github/workflows/asana_sync_issues.yml new file mode 100644 index 0000000000..9eb1bbf713 --- /dev/null +++ b/.github/workflows/asana_sync_issues.yml @@ -0,0 +1,13 @@ +on: + issues: + types: [opened, reopened] + +jobs: + sync: + runs-on: ubuntu-latest + steps: + - uses: duckduckgo/native-github-asana-sync@v1.0 + with: + asana-pat: ${{ secrets.GH_ASANA_SECRET }} + asana-project: ${{ vars.GH_ASANA_PROJECT_ID }} + action: 'create-asana-issue-task' diff --git a/changelog/_1113.md b/changelog/_1113.md new file mode 100644 index 0000000000..d716398661 --- /dev/null +++ b/changelog/_1113.md @@ -0,0 +1,3 @@ +### Added + +- add github workflow to sync issues to asana (testing for now)