Skip to content

Commit

Permalink
Create release_tracking workflow for tracking releases (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrohan committed May 13, 2024
1 parent e708ed2 commit 9d1b9fc
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release_tracking.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release Event Tracking
# Measure a datadog event every time a release occurs

on:
pull_request:
types:
- closed
- opened
- reopened

release:
types: [published]

jobs:
release-tracking:
name: Release Tracking
uses: primer/.github/.github/workflows/release_tracking.yml@create_release_tracking_workflow
secrets:
datadog_api_key: ${{ secrets.DATADOG_API_KEY }}

0 comments on commit 9d1b9fc

Please sign in to comment.