Skip to content

Commit c463d6a

Browse files
authored
ci: fix comment action parameters (#13041)
With the automatic bumping of action versions by dependabot, the comment action broke as it expects parameters with a different name. ## Checklist - [x] PR author has checked that all the criteria below are met - The PR description includes an overview of the change - The PR description articulates the motivation for the change - The change includes tests OR the PR description describes a testing strategy - The PR description notes risks associated with the change, if any - Newly-added code is easy to change - The change follows the [library release note guidelines](https://ddtrace.readthedocs.io/en/stable/releasenotes.html) - The change includes or references documentation updates if necessary - Backport labels are set (if [applicable](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting)) ## Reviewer Checklist - [x] Reviewer has checked that all the criteria below are met - Title is accurate - All changes are related to the pull request's stated goal - Avoids breaking [API](https://ddtrace.readthedocs.io/en/stable/versioning.html#interfaces) changes - Testing strategy adequately addresses listed risks - Newly-added code is easy to change - Release note makes sense to a user of the library - If necessary, author has acknowledged and discussed the performance implications of this PR as reported in the benchmarks PR comment - Backport labels are set in a manner that is consistent with the [release branch maintenance policy](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting)
1 parent 3ec5b05 commit c463d6a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: .github/workflows/codeowners.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
- name: Comment PR
3232
uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1
3333
with:
34-
filePath: resolved.txt
35-
comment_tag: codeowners_resolved
34+
file-path: resolved.txt
35+
comment-tag: codeowners_resolved
3636
mode: upsert
3737
message: |
3838
`CODEOWNERS` have been resolved as:

Diff for: .github/workflows/import-analysis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ jobs:
7474
- name: Report analysis result on PR
7575
uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1
7676
with:
77-
filePath: import_analysis.txt
78-
comment_tag: import_analysis
77+
file-path: import_analysis.txt
78+
comment-tag: import_analysis
7979
mode: upsert
8080
if: always()
8181

@@ -128,8 +128,8 @@ jobs:
128128
- name: "Report analysis result on PR"
129129
uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1
130130
with:
131-
filePath: cycles_report.txt
132-
comment_tag: import_cycles
131+
file-path: cycles_report.txt
132+
comment-tag: import_cycles
133133
mode: upsert
134134
if: failure()
135135

0 commit comments

Comments
 (0)