1212 pull_request :
1313 branches :
1414 - main
15- issue_comment :
15+ issue_comment :
1616 types : [created]
1717
1818# ---------------------------------------------------------------------------------------
@@ -94,22 +94,22 @@ jobs:
9494 # ---------------------------------------------------------------------------------------
9595 # action > checkout
9696 # ---------------------------------------------------------------------------------------
97-
97+
9898 - uses : actions/checkout@v4
9999 if : ( github.event_name == 'pull_request' ) || ( github.event_name == 'issue_comment' && contains( github.event.comment.html_url, '/pull/' ) && contains( github.event.comment.body, '/rescan' ) )
100100 with :
101101 fetch-depth : 0
102102 ref : " refs/pull/${{ steps.get_issue_number.outputs.result }}/merge"
103-
103+
104104 - name : Use Node.js
105105 uses : actions/setup-node@v4
106106
107107 - name : Get changed files
108108 id : changed-files
109- uses : tj-actions/changed-files@v42
109+ uses : tj-actions/changed-files@v45
110110 with :
111111 separator : " ,"
112-
112+
113113 - name : List all added files
114114 run : |
115115 for file in ${CHANGED_FILES}; do
@@ -170,7 +170,7 @@ jobs:
170170 }
171171
172172 let date_created = dateTimeformat( date ) + " UTC";
173-
173+
174174 /*
175175 context.payload.pull_request.base.repo.owner.login
176176 */
@@ -191,18 +191,18 @@ jobs:
191191 | Copied Files | ${{ steps.changed-files.outputs.deleted_files_count }} |
192192 | Deleted Files | ${{ steps.changed-files.outputs.deleted_files_count }} |
193193 `;
194-
194+
195195 message.push ( md_table );
196196
197- let error_Generic = "\n" +
198- "- `MyPlugin`\n" +
199- "- `MyPluginSettings`\n" +
197+ let error_Generic = "\n" +
198+ "- `MyPlugin`\n" +
199+ "- `MyPluginSettings`\n" +
200200 "- `SampleSettings`\n" +
201201 "- `SampleSettingTab`\n" +
202202 "- `SampleModal`\n"
203203
204- let warn_BadWords = "\n" +
205- "- `Obsidian`\n" +
204+ let warn_BadWords = "\n" +
205+ "- `Obsidian`\n" +
206206 "- `Settings`\n"
207207
208208 /*
@@ -581,7 +581,7 @@ jobs:
581581
582582 if (context.payload.pull_request.labels.filter( label => label.name === "${{ env.LABEL_CHECK_STATUS_CHGMADE }}" ).length > 0 )
583583 labels.push( "${{ env.LABEL_CHECK_STATUS_CHGMADE }}" );
584-
584+
585585 if ( context.payload.pull_request.labels.filter( label => label.name === "${{ env.LABEL_CHECK_SCAN_SKIPPED }}" ).length > 0 )
586586 labels.push( "${{ env.LABEL_CHECK_SCAN_SKIPPED }}" );
587587
@@ -614,4 +614,4 @@ jobs:
614614 permissions :
615615 contents : read
616616 issues : write
617- pull-requests : write
617+ pull-requests : write
0 commit comments