3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2024-12-17 13:47:20 +00:00

Update test.yml

This commit is contained in:
Tonye Jack 2022-08-22 14:54:51 -06:00 committed by GitHub
parent 22920e8d5d
commit 4ae6f80c0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -302,21 +302,23 @@ jobs:
echo '${{ toJSON(steps.changed-files-dir-names.outputs) }}'
shell:
bash
- name: Run changed-files since 5 minute ago
- name: Run changed-files since 2022-08-19
id: changed-files-since
uses: ./
continue-on-error: true
with:
since: "5 minute ago"
since: "2022-08-19"
- name: Show output
run: |
echo '${{ toJSON(steps.changed-files-since.outputs) }}'
shell:
bash
- name: Run changed-files until 1 minute ago
- name: Run changed-files until 2022-08-20
id: changed-files-until
uses: ./
continue-on-error: true
with:
until: "1 minute ago"
until: "2022-08-20"
- name: Show output
run: |
echo '${{ toJSON(steps.changed-files-until.outputs) }}'