From a3a526569f7c9e5f27fbc3fcc703279a352600b8 Mon Sep 17 00:00:00 2001 From: Tony Josi Date: Tue, 19 Nov 2024 15:19:14 +0530 Subject: [PATCH] Enable release from forks (#1299) * Enable release from forks * Update Kernel submodule pointer * Update manifest file --------- Co-authored-by: Rahul Kar --- .github/workflows/auto-release.yml | 3 ++- FreeRTOS/Source | 2 +- manifest.yml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index 9abc18a8c7..7f7ce16555 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -43,6 +43,7 @@ jobs: ACTOR: ${{ github.actor }} COMMIT_ID: ${{ github.event.inputs.commit_id }} VERSION_NUMBER: ${{ github.event.inputs.version_number }} + GITHUB_ORG: ${{ github.repository_owner }} run: | # Configure repo for push git config --global user.name "$ACTOR" @@ -50,5 +51,5 @@ jobs: # Run the release script pip install -r ./tools/.github/scripts/release-requirements.txt - ./tools/.github/scripts/release.py FreeRTOS --core-repo-path=local_core --core-commit="$COMMIT_ID" --new-core-version="$VERSION_NUMBER" + ./tools/.github/scripts/release.py "$GITHUB_ORG" --core-repo-path=local_core --core-commit="$COMMIT_ID" --new-core-version="$VERSION_NUMBER" exit $? diff --git a/FreeRTOS/Source b/FreeRTOS/Source index 5f3bab1a32..7e419c2dd5 160000 --- a/FreeRTOS/Source +++ b/FreeRTOS/Source @@ -1 +1 @@ -Subproject commit 5f3bab1a3242640c6e031d9cfb1be756bd76fb3c +Subproject commit 7e419c2dd5d25bded70fb564f1226ae8056215f9 diff --git a/manifest.yml b/manifest.yml index 740f3b611b..ca06fc1eba 100644 --- a/manifest.yml +++ b/manifest.yml @@ -5,7 +5,7 @@ license: "MIT" dependencies: - name: "FreeRTOS-Kernel" - version: "5f3bab1" + version: "7e419c2" repository: type: "git" url: "https://github.com/FreeRTOS/FreeRTOS-Kernel.git"