I need a list of files that changed and dump it to the files
I can get all the list by running this
git diff-tree --name-status -r "upstream/$CI_MERGE_REQUEST_TARGET_BRANCH_NAME..HEAD" > changed-files.txt
But now I want only a list of files that changed inside the resources
folder only
How to do that?