Skip to content

NRF upmerge

NRF upmerge #54

name: NRF upmerge
on:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:
jobs:
change_nrf_revision:
name: Create PR with NRF upmerge
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for all branches and tags
- name: Configure Git
run: |
git config --global user.name 'sidewalk Team'
git config --global user.email 'sidewalk@nordicsemi.no'
- name: Create or update PR
run: |
# Set variables
BRANCH_NAME="ncs-upmerge"
PR_TITLE="manifest: Update NRF"
PR_BODY="Automated weekly update PR created by GitHub Actions"
# Check if PR branch exists
if git show-ref --verify --quiet refs/heads/$BRANCH_NAME; then
echo "Branch $BRANCH_NAME exists, checking PR status..."
# Check if PR exists and is open
PR_NUMBER=$(gh pr list --head $BRANCH_NAME --json number --jq '.[0].number' 2>/dev/null || echo "")
if [ -n "$PR_NUMBER" ]; then
echo "PR #$PR_NUMBER exists and is open"
# Check if PR is merged
PR_MERGED=$(gh pr view $PR_NUMBER --json merged --jq '.merged')
if [ "$PR_MERGED" = "true" ]; then
echo "PR is merged, creating new branch"
# Delete old branch
git push origin --delete $BRANCH_NAME
# Create new branch
git checkout -b $BRANCH_NAME
else
echo "PR is open, updating existing branch"
git checkout $BRANCH_NAME
git pull origin $BRANCH_NAME
fi
else
echo "PR doesn't exist, updating existing branch"
git checkout $BRANCH_NAME
git pull origin $BRANCH_NAME
fi
else
echo "Creating new branch $BRANCH_NAME"
git checkout -b $BRANCH_NAME
fi
# Run your update script here
# ./your-update-script.sh
# Check if there are changes to commit
if git status --porcelain | grep -q '^[MADRCU]'; then
echo "Changes detected, committing and pushing"
# Add and commit changes
git add .
git commit -m "manifest: Update NRF revision in west.yml\n\nWeekly update: $(date +%Y-%m-%d)" --signoff
# Push changes
git push origin $BRANCH_NAME
# Create or update PR
if [ -n "$PR_NUMBER" ]; then
echo "Updating existing PR #$PR_NUMBER"
else
echo "Creating new PR"
gh pr create --title "$PR_TITLE" --body "$PR_BODY" --base main
fi
else
echo "No changes detected"
fi