We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I just want to detect if anything in a given directory has changed ( file added, file removed, file renamed, ... )
When using this approach
steps: - name: Checkout repository uses: actions/checkout@v4 with: fetch-depth: 2 - name: Check if anything in system directory has changed id: check_changed_files uses: tj-actions/changed-files@v45 with: files: ${{ runner.name }}/** # usage: if: ${{ steps.check_changed_files.outputs.any_changed == 'true' }}
it won't detect deleted files for example.
It would be nice to have a boolean flag like output_anything_has_changed
output_anything_has_changed
I'm not sure if this is possible with a combination of existing flags. I couldn't find a flag for deleted files.
No response
The text was updated successfully, but these errors were encountered:
Thanks for reporting this issue, don't forget to star this project if you haven't already to help us reach a wider audience.
Sorry, something went wrong.
No branches or pull requests
Is this feature missing in the latest version?
Is your feature request related to a problem? Please describe.
I just want to detect if anything in a given directory has changed ( file added, file removed, file renamed, ... )
When using this approach
it won't detect deleted files for example.
Describe the solution you'd like?
It would be nice to have a boolean flag like
output_anything_has_changed
Describe alternatives you've considered?
I'm not sure if this is possible with a combination of existing flags. I couldn't find a flag for deleted files.
Anything else?
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: