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
- Host: GitHub
- URL: https://github.com/omagdy7/count_files
- Owner: omagdy7
- Created: 2023-11-01T17:44:32.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-01T18:23:38.000Z (over 2 years ago)
- Last Synced: 2025-02-16T08:24:18.306Z (over 1 year ago)
- Topics: action, actions
- Language: Dockerfile
- Homepage: https://github.com/marketplace/actions/count-the-number-of-files
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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: "./"
```