[Example] Update report #1863
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "File Existence" | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
file_existence: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Check file existence | |
id: check_files | |
uses: andstor/file-existence-action@v1 | |
with: | |
files: "README.md" | |
- name: File exists | |
if: steps.check_files.outputs.files_exists == 'true' | |
# Only runs if all of the files exists | |
run: echo All files exists! |