An open API service indexing awesome lists of open source software.

https://github.com/omagdy7/count_files

Github Action to report the number of files in a given directory
https://github.com/omagdy7/count_files

action actions

Last synced: about 1 year ago
JSON representation

Github Action to report the number of files in a given directory

Awesome Lists containing this project

README

          

# count_files
GitHub Action to count the number of files in a specific directory

## Example workflow:
```yml
name: Count number of files in a given directory

on:
push:
branches:
- master # Change this to your main branch name

jobs:
check_number_of_files:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v2
- name: test gh action
uses: omagdy7/count_files@v1.0
with:
path: "./"
```