[test-infra-definitions][automated] Bump test-infra-definitions to f1880fef5f4846f591a5f0484dcf0cda1dcade80 #1660
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-file: .python-version | |
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" |