Skip to content

Added alert event example to v2 POST event endpoint, and notifications are now available for v2 POST events #18947

Added alert event example to v2 POST event endpoint, and notifications are now available for v2 POST events

Added alert event example to v2 POST event endpoint, and notifications are now available for v2 POST events #18947

Workflow file for this run

name: Send PR Approval Status
permissions:
contents: read
checks: write
on:
pull_request:
branches:
- master
types: ["review_requested", "synchronize", "opened", "reopened"]
pull_request_review:
types:
- submitted
- dismissed
jobs:
send_status:
runs-on: ubuntu-latest
if: >
github.event.pull_request.draft == false &&
!contains(github.event.pull_request.labels.*.name, 'ci/skip') &&
!contains(github.event.pull_request.head.ref, 'datadog-api-spec/test/') &&
contains(github.event.pull_request.head.ref, 'datadog-api-spec/generated/')
steps:
- name: Get GitHub App token
id: get_token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.PIPELINE_GITHUB_APP_ID }}
private-key: ${{ secrets.PIPELINE_GITHUB_APP_PRIVATE_KEY }}
repositories: datadog-api-spec
- name: Post PR review status check
uses: DataDog/github-actions/post-review-status@v2
with:
github-token: ${{ steps.get_token.outputs.token }}
repo: datadog-api-spec
context: datadog-api-client-java/master