ci: auto-label new issues for the Customer Engineering board - #149
Merged
Conversation
New issues get simple_someip + Customer Facing on open, which places them in project #29's unified SOME/IP view without manual triage. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #149 +/- ##
=======================================
Coverage 81.26% 81.26%
=======================================
Files 46 46
Lines 15470 15470
=======================================
Hits 12571 12571
Misses 2899 2899 |
No view on project #29 filters on Customer Facing, and this repo's auto-add workflow uses a bare is:issue is:open filter, so the label was mechanically unused here. simple_someip is the load-bearing one -- it places the issue in the board's unified SOME/IP view. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
zheylmun
approved these changes
Aug 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
.github/workflows/label-issues.yml, which applies thesimple_someiplabel to every newly-opened issue in this repo.Why
The Customer Engineering board (luminartech org project #29) tracks SOME/IP work from both
dft(via theiris_someip_*crate labels) and this repo, in a single view. GitHub Projects view filters AND across distinct qualifiers and only OR within one, so(label:… AND repo:dft) OR (repo:simple_someip)has no single-filter form. A shared label qualifier is what keeps SOME/IP in one tab instead of splitting it across two.An unlabeled issue here is worse than merely absent: the project's auto-add workflow still adds it, but it then matches none of the board's five views, leaving it on the board and invisible in every tab.
Doing this by hand means every new issue has to be labeled or it silently disappears that way. Five issues (#144–#148) were filed during the initial backfill alone, so this automates it.
Notes
simple_someiplabel already exists here and is applied to all 16 currently-open issues; this only covers issues opened from here on.issues: write, triggers only onissues: opened.Customer Facing: no view on project Add client-server integration test #29 filters on it, and this repo's auto-add workflow uses a bareis:issue is:openfilter, so it would be mechanically unused here.🤖 Generated with Claude Code