New Relic Application Deployment Marker
ActionsApply a New Relic application deployment marker to an application that is monitored by New Relic
v0.1.1
By newrelic
Verified creator
Tags
(2)Verified
New Relic App Deployment Marker
A GitHub Action to add New Relic deployment markers during your release pipeline.
Key | Description | |
---|---|---|
apiKey |
required | Your New Relic personal API key. |
applicationId |
required | The New Relic application ID to apply the deployment marker. |
region |
optional | The region of your New Relic account. Default: "US" |
revision |
optional | Metadata to apply to the deployment marker - e.g. the latest release tag |
accountId |
optional | The account number the application falls under. This could also be a subaccount. |
user |
optional | The user creating the deployment. Default: ${{ github.actor }} |
# Add a New Relic application deployment marker on release
on:
- release
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Apply New Relic deployment marker
uses: newrelic/deployment-marker-action@master
with:
apiKey: ${{ secrets.NEW_RELIC_API_KEY }}
applicationId: <your application ID>
revision: ${{ github.ref }}-${{ github.sha }} # optional
region: US # optional
accountId: <your New Relic account ID> # optional
user: ${{ github.actor }} # optional
New Relic Application Deployment Marker is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.