Skip to content

Commit 6848db5

Browse files
committed
build: update default repository reference from 'main' to 'master'
This change updates the default repository reference in the action's input parameters and the entrypoint script to align with the repository's new branch naming convention. Signed-off-by: Chiho Sin <[email protected]>
1 parent 491485b commit 6848db5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
| Parameter Name | Required | Default | Description |
3838
|-----------------|----------|----------|-----------------------------------------------|
3939
| `repo_remote` | No | `origin` | The MicroPython repository remote ('origin', 'upstream'). |
40-
| `repo_ref` | No | `main` | The MicroPython repository reference (branch, tag, commit). |
40+
| `repo_ref` | No | `master` | The MicroPython repository reference (branch, tag, commit). |
4141
| `port` | Yes | None | The MicroPython platform to build (esp32, nrf). |
4242
| `board` | No | `""` | The MicroPython board to build. |
4343

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
required: false
1313
repo_ref:
1414
description: The MicroPython repository reference (branch, tag, commit)
15-
default: main
15+
default: master
1616
required: false
1717
port:
1818
description: The MicroPython platform to build (esp32, nrf)

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ JOBS=$(nproc)
99
: "${GITHUB_ACTIONS:=false}"
1010
# Inputs (provide safe defaults)
1111
: "${REPO_REMOTE:=origin}"
12-
: "${REPO_REF:=main}"
12+
: "${REPO_REF:=master}"
1313
: "${BOARD:=}"
1414

1515
# Reset to the target SHA

0 commit comments

Comments
 (0)