Skip to content
New issue

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

Move to WIP if there is a maintainer declared in CSC or EOS #81

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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