[test-infra-definitions][automated] Bump test-infra-definitions to 9c7c5005ca28f0f815f4ba6c72e5d603bd0a9cf7 #1017
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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
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" |