diff --git a/.github/workflows/_deploy.yml b/.github/workflows/_deploy.yml index 0195dfd..8014ac8 100644 --- a/.github/workflows/_deploy.yml +++ b/.github/workflows/_deploy.yml @@ -8,6 +8,8 @@ on: required: true NEW_RELIC_DEPLOYMENT_ENTITY_GUID: required: true + NEW_RELIC_API_KEY: + required: true jobs: notify: @@ -50,4 +52,4 @@ jobs: uses: axatol/actions/send-deployment-notification@release with: webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} - status: ${{ steps.deploy.outcome }} + status: ${{ job.status }} diff --git a/.github/workflows/push-to-master.yml b/.github/workflows/push-to-master.yml index a60dcbd..e82c7de 100644 --- a/.github/workflows/push-to-master.yml +++ b/.github/workflows/push-to-master.yml @@ -24,3 +24,4 @@ jobs: secrets: DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }} NEW_RELIC_DEPLOYMENT_ENTITY_GUID: ${{ secrets.NEW_RELIC_DEPLOYMENT_ENTITY_GUID }} + NEW_RELIC_API_KEY: ${{ secrets.NEW_RELIC_API_KEY }}