Update Pulumi dependecies for Kind according to what worked on test-infra #955
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: | |
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" |