|
5 years ago | |
---|---|---|
lib | 5 years ago | |
node_modules | 5 years ago | |
src | 5 years ago | |
.gitignore | 5 years ago | |
LICENSE | 5 years ago | |
README.md | 5 years ago | |
action.yml | 5 years ago | |
package.json | 5 years ago | |
tsconfig.json | 5 years ago | |
yarn.lock | 5 years ago |
This GitHub action applies to pull requests and populates 3 output variables with the modified files. They are: "files_created", "files_updated", and "files_deleted".
- name: Changed Files Exporter
uses: futuratrepadeira/changed-files@v3.0.0
with:
repo-token: ${{ github.token }}
pattern: '^.*\.(md|markdown)$'
repo-token
: GitHub Access Tokenpattern
(optional): A regular expression to filter the outputs by. Defaults to '.*'
.All output values are a single JSON encoded array.
files_created
: Created filesfiles_updated
: Updated filesfiles_deleted
: Deleted files