Skip to content

Commit

Permalink
feat(ci): call reusable workflow to track the release deployments and…
Browse files Browse the repository at this point in the history
… 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.
  • Loading branch information
MSevey authored and Wondertan committed Apr 21, 2024
1 parent ceae8cf commit 5f94b05
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/create_release_tracking_epic.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 5f94b05

Please sign in to comment.