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

Quarantine reviewers #8

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
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
29 changes: 29 additions & 0 deletions .github/workflows/review-quarantine-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Quarantine validation

on:
pull_request_target:
branches:
- main
- v*-branch
paths:
- '**/scripts/quarantine*.yaml'
jobs:
quarantine-info:
runs-on: ubuntu-24.04
steps:
- name: Add information about quarantine process
run: |
# Find existing comment
comment_id=$(gh pr view ${{ github.event.pull_request.number }} --json comments --jq '.comments[] | select(.body | contains("Quarantine Process")) | .id' || echo "")
if [[ -z "$comment_id" ]]; then
# No comment - create new one
gh pr comment "$PR_NUMBER" --body "$BODY"
fi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}
BODY: >
Since quarantine was modified, please make sure
you are following the process described in
[Quarantine Process](https://nordicsemi.atlassian.net/wiki/spaces/NCS/pages/1104576817/Quarantine).
6 changes: 6 additions & 0 deletions scripts/quarantine_zephyr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,12 @@
- nrf54l15dk/nrf54l15/cpuapp
comment: "https://nordicsemi.atlassian.net/browse/NCSDK-31783"

- scenarios:
- drivers.sensor.qdec
platforms:
- nrf5340dk/nrf5340/cpuapp
comment: "Pin alignment is needed. "

# --------------------------------- Won't fix section -----------------------------------

- scenarios:
Expand Down
Loading