Skip to content

Commit bfdf878

Browse files
authored
fix: Remove New Relic from Release Marker workflow (#177)
1 parent d4c7a64 commit bfdf878

File tree

1 file changed

+4
-27
lines changed

1 file changed

+4
-27
lines changed

.github/workflows/release_marker.yaml

Lines changed: 4 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Marks release in New Relic and/or Sentry
1+
# Marks release in Grafana and/or Sentry
22
name: release marker
33

44
on:
@@ -8,14 +8,6 @@ on:
88
description: Revision that will be marked
99
required: true
1010
type: string
11-
newRelicAccountId:
12-
description: New Relic account ID
13-
required: false
14-
type: number
15-
newRelicApplicationId:
16-
description: New Relic application ID
17-
required: false
18-
type: string
1911
sentryOrg:
2012
description: Sentry Organization
2113
required: false
@@ -49,11 +41,8 @@ on:
4941
required: false
5042
type: string
5143
default: 'default'
52-
44+
5345
secrets:
54-
newRelicApiKey:
55-
description: New Relic API key
56-
required: false
5746
sentryAuthToken:
5847
description: Sentry authentication token
5948
required: false
@@ -65,18 +54,6 @@ on:
6554
required: false
6655

6756
jobs:
68-
new_relic:
69-
if: inputs.newRelicAccountId != ''
70-
runs-on: ubuntu-latest
71-
steps:
72-
- name: mark
73-
uses: newrelic/deployment-marker-action@v1
74-
with:
75-
apiKey: ${{ secrets.newRelicApiKey }}
76-
accountId: ${{ inputs.newRelicAccountId }}
77-
applicationId: ${{ inputs.newRelicApplicationId }}
78-
revision: ${{ inputs.revision }}
79-
8057
grafana:
8158
if: inputs.revision != ''
8259
runs-on: ubuntu-latest
@@ -119,12 +96,12 @@ jobs:
11996
slack_notification_failure:
12097
if: failure() && inputs.slackChannelId != ''
12198
needs:
122-
- new_relic
99+
- grafana
123100
- sentry
124101
uses: ./.github/workflows/slack.yaml
125102
with:
126103
slackChannelId: ${{ inputs.slackChannelId }}
127-
subject: "marking release in new relic/sentry failed"
104+
subject: "marking release in new Grafana/sentry failed"
128105
revision: ${{ inputs.revision }}
129106
actorOverride: ${{ inputs.actorOverride }}
130107
jobStatus: failure

0 commit comments

Comments
 (0)