File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 1
1
<!-- - this comment is for `report-connectors-dependency.yml` identification, do not remove -->
2
2
3
+ ## Affected Connector Report
4
+
3
5
NOTE ⚠️ Changes in this PR affect the following connectors. Make sure to do the following as needed:
4
6
- Run integration tests
5
7
- Bump connector version
@@ -17,6 +19,8 @@ NOTE ⚠️ Changes in this PR affect the following connectors. Make sure to do
17
19
| --- | :---: | :---: | :---: |
18
20
{source_rows}
19
21
22
+ * See "Actionable Items" below for how to resolve warnings and errors.
23
+
20
24
</details >
21
25
22
26
<details {destination_open} >
@@ -30,6 +34,8 @@ NOTE ⚠️ Changes in this PR affect the following connectors. Make sure to do
30
34
| --- | :---: | :---: | :---: |
31
35
{destination_rows}
32
36
37
+ * See "Actionable Items" below for how to resolve warnings and errors.
38
+
33
39
</details >
34
40
35
41
{others}
@@ -38,7 +44,9 @@ NOTE ⚠️ Changes in this PR affect the following connectors. Make sure to do
38
44
39
45
<summary >
40
46
41
- ### Notes
47
+ ### Actionable Items
48
+
49
+ (click to expand)
42
50
43
51
</summary >
44
52
Original file line number Diff line number Diff line change 25
25
echo "comment=true" >> $GITHUB_OUTPUT
26
26
fi
27
27
- name : Find existing comment for connector dependencies
28
- if : steps.dependency_report.outputs.comment == 'true'
28
+ # Always run this step because the action may need to
29
+ # remove a comment created from a previous commit.
29
30
uses : peter-evans/find-comment@v2
30
31
id : find_comment
31
32
with :
40
41
comment-id : ${{ steps.find_comment.outputs.comment-id }}
41
42
edit-mode : " replace"
42
43
body-file : " comment_body.md"
44
+ - name : Remove deprecated report in PR
45
+ if : steps.dependency_report.outputs.comment != 'true' && steps.find_comment.outputs.comment-id != ''
46
+ uses : peter-evans/create-or-update-comment@v2
47
+ with :
48
+ issue-number : ${{ github.event.pull_request.number }}
49
+ comment-id : ${{ steps.find_comment.outputs.comment-id }}
50
+ edit-mode : " replace"
51
+ body : |
52
+ <!--- this comment is for `report-connectors-dependency.yml` identification, do not remove -->
53
+ ## Affected Connector Report
54
+ The latest commit has removed all connector-related changes. There are no more dependent connectors for this PR.
You can’t perform that action at this time.
0 commit comments