From 5f94b0594b8a7f1f94065bfc491fd0c3035bb999 Mon Sep 17 00:00:00 2001 From: Matthew Sevey Date: Thu, 4 Apr 2024 10:13:25 -0400 Subject: [PATCH] feat(ci): call reusable workflow to track the release deployments and notify devops (#3291) This PR makes use of the reusable workflow that creates an EPIC in the devops repo and notifies the devops team on slack to help with tracking release deployments on our testnets and mainnet infrastructure. --- .github/workflows/create_release_tracking_epic.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/create_release_tracking_epic.yml diff --git a/.github/workflows/create_release_tracking_epic.yml b/.github/workflows/create_release_tracking_epic.yml new file mode 100644 index 0000000000..2bc79055dc --- /dev/null +++ b/.github/workflows/create_release_tracking_epic.yml @@ -0,0 +1,14 @@ +name: Create Release Tracking Epic + +# This workflow creates an EPIC in the devops repo and notifies the devops team +# on slack for tracking the deployment of a release to testnets and mainnet. +on: + release: + types: [published] +jobs: + trigger_issue: + uses: celestiaorg/.github/.github/workflows/reusable_create_release_tracking_epic.yml@v0.4.0 + secrets: inherit + with: + release-repo: ${{ github.repository }} + release-version: ${{ github.event.release.tag_name }}