Post release events to datadog
This commit is contained in:
parent
d2b99213da
commit
68f6460b92
1 changed files with 35 additions and 0 deletions
35
.github/workflows/release.yml
vendored
Normal file
35
.github/workflows/release.yml
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Copyright 2021 Signal Messenger, LLC
|
||||
# SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
name: On Release
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v[0-9]+.[0-9]+.*'
|
||||
|
||||
jobs:
|
||||
backport:
|
||||
name: Create event in datadog
|
||||
if: ${{ github.repository == 'signalapp/Signal-Desktop-Private' }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Create event on DataDog
|
||||
run: |
|
||||
curl -X POST "https://api.datadoghq.com/api/v1/events" \
|
||||
-H "Accept: application/json" \
|
||||
-H "Content-Type: application/json" \
|
||||
-H "DD-API-KEY: ${DD_API_KEY}" \
|
||||
-d @- << EOF
|
||||
{
|
||||
"title": "Desktop Release ${{ github.ref_name }}"
|
||||
"text": "A new desktop release ${{ github.ref_name }} was just published"
|
||||
"source_type_name": "git",
|
||||
"tags": [
|
||||
"service:desktop.ci.release",
|
||||
"env:production",
|
||||
"version:${{ github.ref_name }}"
|
||||
]
|
||||
}
|
||||
EOF
|
||||
env:
|
||||
DD_API_KEY: ${{ secrets.DATADOG_API_KEY }}
|
Loading…
Add table
Reference in a new issue