Update test.yml

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

View File

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