[test-infra-definitions][automated] Bump test-infra-definitions to e015462e5f6108e23a8f0c9b1d8b0c3c54d9d265 #1347
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Report PR merged event to Datadog | |
name: Report Merged PR | |
on: | |
pull_request: | |
branches: | |
- main | |
types: [closed] | |
permissions: {} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DD_API_KEY: ${{ secrets.REPORT_MERGED_PR_DD_API_KEY }} | |
jobs: | |
if_merged: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
persist-credentials: false | |
- name: Setup Python3 | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: "3.12.6" | |
cache: "pip" | |
cache-dependency-path: '**/requirements*.txt' | |
- name: Install python dependencies | |
run: pip3 install -r requirements.txt | |
- name: Send merge event to Datadog | |
env: | |
PR_NUMBER: ${{ github.event.pull_request.number }} | |
run: | | |
invoke -e github.pr-merge-dd-event-sender -p "$PR_NUMBER" |