Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nrfconnect/sdk-nrf
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: PerMac/sdk-nrf
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Mar 6, 2025

  1. .github: Add information about quarantine process to PR

    Codeowners should be informed if their test configuration
    is added to quarantine.
    First step is information about quarantine process for
    author of pull request.
    
    Signed-off-by: Katarzyna Giądła <katarzyna.giadla@nordicsemi.no>
    katgiadla authored and PerMac committed Mar 6, 2025
    Copy the full SHA
    3d60b6d View commit details
  2. fix

    Signed-off-by: Katarzyna Giądła <katarzyna.giadla@nordicsemi.no>
    katgiadla authored and PerMac committed Mar 6, 2025
    Copy the full SHA
    19d7371 View commit details
Showing with 29 additions and 0 deletions.
  1. +29 −0 .github/workflows/review-quarantine-pr.yml
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).