Skip to content

Commit c23d52b

Browse files
Updated README.md (#2817)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Tonye Jack <jtonye@ymail.com>
1 parent 4750530 commit c23d52b

1 file changed

Lines changed: 31 additions & 31 deletions

File tree

README.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
# -----------------------------------------------------------------------------------------------------------
123123
- name: Get changed files
124124
id: changed-files
125-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
125+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
126126
# To compare changes between the current commit and the last pushed remote commit set `since_last_remote_commit: true`. e.g
127127
# with:
128128
# since_last_remote_commit: true
@@ -140,7 +140,7 @@ jobs:
140140
# -----------------------------------------------------------------------------------------------------------
141141
- name: Get all changed markdown files
142142
id: changed-markdown-files
143-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
143+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
144144
with:
145145
# Avoid using single or double quotes for multiline patterns
146146
files: |
@@ -161,7 +161,7 @@ jobs:
161161
# -----------------------------------------------------------------------------------------------------------
162162
- name: Get all test, doc and src files that have changed
163163
id: changed-files-yaml
164-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
164+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
165165
with:
166166
files_yaml: |
167167
doc:
@@ -196,7 +196,7 @@ jobs:
196196
# -----------------------------------------------------------------------------------------------------------
197197
- name: Get changed files in the docs folder
198198
id: changed-files-specific
199-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
199+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
200200
with:
201201
files: docs/*.{js,html} # Alternatively using: `docs/**`
202202
files_ignore: docs/static.js
@@ -238,7 +238,7 @@ jobs:
238238
steps:
239239
- name: Get changed files
240240
id: changed-files
241-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
241+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
242242

243243
- name: List all changed files
244244
env:
@@ -281,7 +281,7 @@ jobs:
281281

282282
- name: Get changed files
283283
id: changed-files
284-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
284+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
285285
# NOTE: `since_last_remote_commit: true` is implied by default and falls back to the previous local commit.
286286

287287
- name: List all changed files
@@ -328,7 +328,7 @@ Support this project with a :star:
328328
<!-- AUTO-DOC-INPUT:START - Do not remove or modify this section -->
329329

330330
```yaml
331-
- uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
331+
- uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
332332
id: changed-files
333333
with:
334334
# Github API URL.
@@ -825,7 +825,7 @@ The format of the version string is as follows:
825825
...
826826
- name: Get changed files
827827
id: changed-files
828-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
828+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
829829
...
830830
```
831831

@@ -838,7 +838,7 @@ The format of the version string is as follows:
838838
...
839839
- name: Get changed files
840840
id: changed-files
841-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
841+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
842842
with:
843843
safe_output: false # set to false because we are using an environment variable to store the output and avoid command injection.
844844

@@ -861,7 +861,7 @@ The format of the version string is as follows:
861861
...
862862
- name: Get all changed files and use a comma separator in the output
863863
id: changed-files
864-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
864+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
865865
with:
866866
separator: ","
867867
...
@@ -878,7 +878,7 @@ See [inputs](#inputs) for more information.
878878
...
879879
- name: Get changed files
880880
id: changed-files
881-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
881+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
882882

883883
- name: List all added files
884884
env:
@@ -901,7 +901,7 @@ See [outputs](#outputs) for a list of all available outputs.
901901
...
902902
- name: Get changed files
903903
id: changed-files
904-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
904+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
905905

906906
- name: Run a step if my-file.txt was modified
907907
if: contains(steps.changed-files.outputs.modified_files, 'my-file.txt')
@@ -922,7 +922,7 @@ See [outputs](#outputs) for a list of all available outputs.
922922

923923
- name: Get changed files and write the outputs to a Txt file
924924
id: changed-files-write-output-files-txt
925-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
925+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
926926
with:
927927
write_output_files: true
928928

@@ -941,7 +941,7 @@ See [outputs](#outputs) for a list of all available outputs.
941941
...
942942
- name: Get changed files and write the outputs to a JSON file
943943
id: changed-files-write-output-files-json
944-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
944+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
945945
with:
946946
json: true
947947
write_output_files: true
@@ -961,7 +961,7 @@ See [outputs](#outputs) for a list of all available outputs.
961961
...
962962
- name: Get changed files
963963
id: changed-files
964-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
964+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
965965
with:
966966
files: |
967967
my-file.txt
@@ -984,7 +984,7 @@ See [inputs](#inputs) for more information.
984984
...
985985
- name: Get changed files
986986
id: changed-files-specific
987-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
987+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
988988
with:
989989
files: |
990990
my-file.txt
@@ -1035,7 +1035,7 @@ See [outputs](#outputs) for a list of all available outputs.
10351035
...
10361036
- name: Get changed files using a source file or list of file(s) to populate to files input.
10371037
id: changed-files-specific-source-file
1038-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1038+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
10391039
with:
10401040
files_from_source_file: test/changed-files-list.txt
10411041
...
@@ -1052,7 +1052,7 @@ See [inputs](#inputs) for more information.
10521052
...
10531053
- name: Get changed files using a source file or list of file(s) to populate to files input and optionally specify more files.
10541054
id: changed-files-specific-source-file-and-specify-files
1055-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1055+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
10561056
with:
10571057
files_from_source_file: |
10581058
test/changed-files-list.txt
@@ -1073,7 +1073,7 @@ See [inputs](#inputs) for more information.
10731073
...
10741074
- name: Get changed files using a different SHA
10751075
id: changed-files
1076-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1076+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
10771077
with:
10781078
sha: ${{ github.event.pull_request.head.sha }}
10791079
...
@@ -1090,7 +1090,7 @@ See [inputs](#inputs) for more information.
10901090
...
10911091
- name: Get changed files using a different base SHA
10921092
id: changed-files
1093-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1093+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
10941094
with:
10951095
base_sha: ${{ github.event.pull_request.base.sha }}
10961096
...
@@ -1122,7 +1122,7 @@ jobs:
11221122

11231123
- name: Get changed files
11241124
id: changed-files
1125-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1125+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
11261126

11271127
- name: List changed files
11281128
env:
@@ -1132,7 +1132,7 @@ jobs:
11321132
11331133
- name: Get changed files in the .github folder
11341134
id: changed-files-specific
1135-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1135+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
11361136
with:
11371137
files: .github/**
11381138

@@ -1163,7 +1163,7 @@ See [inputs](#inputs) for more information.
11631163

11641164
- name: Run changed-files with defaults in dir1
11651165
id: changed-files-for-dir1
1166-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1166+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
11671167
with:
11681168
path: dir1
11691169

@@ -1188,13 +1188,13 @@ See [inputs](#inputs) for more information.
11881188
...
11891189
- name: Run changed-files with quotepath disabled
11901190
id: changed-files-quotepath
1191-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1191+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
11921192
with:
11931193
quotepath: "false"
11941194

11951195
- name: Run changed-files with quotepath disabled for a specified list of file(s)
11961196
id: changed-files-quotepath-specific
1197-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1197+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
11981198
with:
11991199
files: test/test-è.txt
12001200
quotepath: "false"
@@ -1227,7 +1227,7 @@ See [inputs](#inputs) for more information.
12271227

12281228
- name: Run changed-files with the commit of the last successful test workflow run
12291229
id: changed-files-base-sha-push
1230-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1230+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
12311231
with:
12321232
base_sha: ${{ steps.last_successful_commit_push.outputs.base }}
12331233
...
@@ -1254,7 +1254,7 @@ See [inputs](#inputs) for more information.
12541254

12551255
- name: Run changed-files with the commit of the last successful test workflow run on the main branch
12561256
id: changed-files-base-sha-pull-request
1257-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1257+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
12581258
with:
12591259
base_sha: ${{ steps.last_successful_commit_pull_request.outputs.base }}
12601260
...
@@ -1280,7 +1280,7 @@ See [inputs](#inputs) for more information.
12801280
...
12811281
- name: Run changed-files with dir_names
12821282
id: changed-files-dir-names
1283-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1283+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
12841284
with:
12851285
dir_names: "true"
12861286
...
@@ -1297,7 +1297,7 @@ See [inputs](#inputs) for more information.
12971297
...
12981298
- name: Run changed-files with JSON output
12991299
id: changed-files-json
1300-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1300+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
13011301
with:
13021302
json: "true"
13031303
...
@@ -1314,13 +1314,13 @@ See [inputs](#inputs) for more information.
13141314
...
13151315
- name: Get changed-files since 2022-08-19
13161316
id: changed-files-since
1317-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1317+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
13181318
with:
13191319
since: "2022-08-19"
13201320

13211321
- name: Get changed-files until 2022-08-20
13221322
id: changed-files-until
1323-
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.4
1323+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
13241324
with:
13251325
until: "2022-08-20"
13261326
...

0 commit comments

Comments
 (0)