mirror of
https://github.com/netdata/netdata.git
synced 2025-04-13 01:08:11 +00:00
Use changed files in check-files workflow (#16993)
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:
parent
d3c22fe5be
commit
94f533f758
4 changed files with 20 additions and 16 deletions
.github/workflows
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
|
@ -65,12 +65,13 @@ jobs:
|
||||||
files_ignore: |
|
files_ignore: |
|
||||||
netdata.spec.in
|
netdata.spec.in
|
||||||
**/*.md
|
**/*.md
|
||||||
- name: List all modified files in pattern
|
- name: List all changed files in pattern
|
||||||
|
continue-on-error: true
|
||||||
env:
|
env:
|
||||||
ALL_MODIFIED_FILES: ${{ steps.check-files.outputs.all_modified_files }}
|
ALL_CHANGED_FILES: ${{ steps.check-files.outputs.all_changed_files }}
|
||||||
run: |
|
run: |
|
||||||
for file in ${ALL_MODIFIED_FILES}; do
|
for file in ${ALL_CHANGED_FILES}; do
|
||||||
echo "$file was modified"
|
echo "$file was changed"
|
||||||
done
|
done
|
||||||
- name: Check Run
|
- name: Check Run
|
||||||
id: check-run
|
id: check-run
|
||||||
|
|
9
.github/workflows/checks.yml
vendored
9
.github/workflows/checks.yml
vendored
|
@ -53,12 +53,13 @@ jobs:
|
||||||
files_ignore: |
|
files_ignore: |
|
||||||
netdata.spec.in
|
netdata.spec.in
|
||||||
**/*.md
|
**/*.md
|
||||||
- name: List all modified files in pattern
|
- name: List all changed files in pattern
|
||||||
|
continue-on-error: true
|
||||||
env:
|
env:
|
||||||
ALL_MODIFIED_FILES: ${{ steps.check-files.outputs.all_modified_files }}
|
ALL_CHANGED_FILES: ${{ steps.check-files.outputs.all_changed_files }}
|
||||||
run: |
|
run: |
|
||||||
for file in ${ALL_MODIFIED_FILES}; do
|
for file in ${ALL_CHANGED_FILES}; do
|
||||||
echo "$file was modified"
|
echo "$file was changed"
|
||||||
done
|
done
|
||||||
- name: Check Run
|
- name: Check Run
|
||||||
id: check-run
|
id: check-run
|
||||||
|
|
9
.github/workflows/docker.yml
vendored
9
.github/workflows/docker.yml
vendored
|
@ -59,12 +59,13 @@ jobs:
|
||||||
files_ignore: |
|
files_ignore: |
|
||||||
netdata.spec.in
|
netdata.spec.in
|
||||||
**/*.md
|
**/*.md
|
||||||
- name: List all modified files in pattern
|
- name: List all changed files in pattern
|
||||||
|
continue-on-error: true
|
||||||
env:
|
env:
|
||||||
ALL_MODIFIED_FILES: ${{ steps.check-files.outputs.all_modified_files }}
|
ALL_CHANGED_FILES: ${{ steps.check-files.outputs.all_changed_files }}
|
||||||
run: |
|
run: |
|
||||||
for file in ${ALL_MODIFIED_FILES}; do
|
for file in ${ALL_CHANGED_FILES}; do
|
||||||
echo "$file was modified"
|
echo "$file was changed"
|
||||||
done
|
done
|
||||||
- name: Check Run
|
- name: Check Run
|
||||||
id: check-run
|
id: check-run
|
||||||
|
|
9
.github/workflows/packaging.yml
vendored
9
.github/workflows/packaging.yml
vendored
|
@ -68,12 +68,13 @@ jobs:
|
||||||
web/server/h2o/libh2o/
|
web/server/h2o/libh2o/
|
||||||
files_ignore: |
|
files_ignore: |
|
||||||
**/*.md
|
**/*.md
|
||||||
- name: List all modified files in pattern
|
- name: List all changed files in pattern
|
||||||
|
continue-on-error: true
|
||||||
env:
|
env:
|
||||||
ALL_MODIFIED_FILES: ${{ steps.check-files.outputs.all_modified_files }}
|
ALL_CHANGED_FILES: ${{ steps.check-files.outputs.all_changed_files }}
|
||||||
run: |
|
run: |
|
||||||
for file in ${ALL_MODIFIED_FILES}; do
|
for file in ${ALL_CHANGED_FILES}; do
|
||||||
echo "$file was modified"
|
echo "$file was changed"
|
||||||
done
|
done
|
||||||
- name: Check Run
|
- name: Check Run
|
||||||
id: check-run
|
id: check-run
|
||||||
|
|
Loading…
Add table
Reference in a new issue