Allow workflow_dispatch to trigger unit tests, add debugging to updater workflow (#10817)

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
This commit is contained in:
Satadru Pramanik, DO, MPH, MEng
2024-11-28 11:27:00 -05:00
committed by GitHub
parent 510b961562
commit 6572ba474d
2 changed files with 16 additions and 4 deletions

View File

@@ -152,6 +152,10 @@ jobs:
export CREW_REPO="${{ github.event.pull_request.head.repo.clone_url }}"
export CREW_BRANCH="${{ github.head_ref }}"
;;
workflow_dispatch)
export CREW_REPO="${{ github.event.repository.clone_url }}"
export CREW_BRANCH="${{ github.ref_name }}"
;;
esac
if [ -z "${NON_PKG_CHANGED_FILES}" ] && ([ "$PLATFORM" == 'linux/arm/v7' ] && [ -z "${ARMV7L_PACKAGES}" ]); then
# Exit the arm container if there are neither non-package changed files nor armv7l compatible packages.