0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-04 05:25:31 +00:00

Use changed files in check-files workflow ()

We hit a limit when too many files were changing. Most commonly the case will be moving too many files that's why we amend this.

---------

Signed-off-by: Tasos Katsoulas <tasos@netdata.cloud>
This commit is contained in:
Tasos Katsoulas 2024-02-12 11:59:32 +02:00 committed by GitHub
parent d3c22fe5be
commit 94f533f758
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 20 additions and 16 deletions

View file

@ -65,12 +65,13 @@ jobs:
files_ignore: |
netdata.spec.in
**/*.md
- name: List all modified files in pattern
- name: List all changed files in pattern
continue-on-error: true
env:
ALL_MODIFIED_FILES: ${{ steps.check-files.outputs.all_modified_files }}
ALL_CHANGED_FILES: ${{ steps.check-files.outputs.all_changed_files }}
run: |
for file in ${ALL_MODIFIED_FILES}; do
echo "$file was modified"
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
done
- name: Check Run
id: check-run

View file

@ -53,12 +53,13 @@ jobs:
files_ignore: |
netdata.spec.in
**/*.md
- name: List all modified files in pattern
- name: List all changed files in pattern
continue-on-error: true
env:
ALL_MODIFIED_FILES: ${{ steps.check-files.outputs.all_modified_files }}
ALL_CHANGED_FILES: ${{ steps.check-files.outputs.all_changed_files }}
run: |
for file in ${ALL_MODIFIED_FILES}; do
echo "$file was modified"
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
done
- name: Check Run
id: check-run

View file

@ -59,12 +59,13 @@ jobs:
files_ignore: |
netdata.spec.in
**/*.md
- name: List all modified files in pattern
- name: List all changed files in pattern
continue-on-error: true
env:
ALL_MODIFIED_FILES: ${{ steps.check-files.outputs.all_modified_files }}
ALL_CHANGED_FILES: ${{ steps.check-files.outputs.all_changed_files }}
run: |
for file in ${ALL_MODIFIED_FILES}; do
echo "$file was modified"
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
done
- name: Check Run
id: check-run

View file

@ -68,12 +68,13 @@ jobs:
web/server/h2o/libh2o/
files_ignore: |
**/*.md
- name: List all modified files in pattern
- name: List all changed files in pattern
continue-on-error: true
env:
ALL_MODIFIED_FILES: ${{ steps.check-files.outputs.all_modified_files }}
ALL_CHANGED_FILES: ${{ steps.check-files.outputs.all_changed_files }}
run: |
for file in ${ALL_MODIFIED_FILES}; do
echo "$file was modified"
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
done
- name: Check Run
id: check-run