From 5b1e8310bdb209d24b3debd13e8c66ced5494487 Mon Sep 17 00:00:00 2001 From: eriksargent Date: Wed, 19 Nov 2025 16:23:41 -0700 Subject: [PATCH] ci: add release notification workflow --- .github/workflows/documentation.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/documentation.yml diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml new file mode 100644 index 0000000..b777dd1 --- /dev/null +++ b/.github/workflows/documentation.yml @@ -0,0 +1,15 @@ +name: Document Releases + +on: + release: + types: + - created + +jobs: + notify: + uses: atomicfi/mobile-conformance-tests/.github/workflows/notify_releases.yml@main + secrets: + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_RELEASES_WEBHOOK_URL }} + NOTION_API_KEY: ${{ secrets.NOTION_RELEASES_API_KEY }} + LINEAR_API_KEY: ${{ secrets.LINEAR_API_KEY }} + GITHUB_DEPLOY_KEY: ${{ secrets.CONFORMANCE_REPO_PULL_KEY }}