mirror of
https://github.com/netdata/netdata.git
synced 2025-04-04 05:25:31 +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: |
|
||||
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
|
||||
|
|
9
.github/workflows/checks.yml
vendored
9
.github/workflows/checks.yml
vendored
|
@ -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
|
||||
|
|
9
.github/workflows/docker.yml
vendored
9
.github/workflows/docker.yml
vendored
|
@ -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
|
||||
|
|
9
.github/workflows/packaging.yml
vendored
9
.github/workflows/packaging.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue