Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
done
} >> "$GITHUB_STEP_SUMMARY"

- name: Mark csc for no maintainer
- name: Move to CSC where we don't have a maintainer anymore
run: |
grep BOARD_MAINTAINER=\"\" config/boards/*.{wip,conf} | cut -d":" -f1 |
while read -r line; do
Expand All @@ -92,6 +92,18 @@ jobs:
fi
done

- name: Move to WIP if there is a maintainer declared in CSC or EOS
run: |
grep BOARD_MAINTAINER= config/boards/*.{csc,eos} | grep -v '=""' | cut -d":" -f1 |
while read -r line; do
if [[ "${line}" != "${line/.eos/.wip}" ]]; then
echo "mv -v "$line" "${line/.eos/.wip}""
fi
if [[ "${line}" != "${line/.csc/.wip}" ]]; then
echo "mv -v "$line" "${line/.csc/.wip}""
fi
done

- name: Re-generate CODEOWNERS
run: |
./.github/generate_CODEOWNERS.sh
Expand Down