Skip to content

Commit 1b7727e

Browse files
committed
enable smoke test workflows
1 parent c02170d commit 1b7727e

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/debian-packages.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,9 @@ jobs:
2828
run: |
2929
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
3030
# Manual trigger - use input or default
31-
DISTROS="${{ github.event.inputs.ros_distros || 'humble,jazzy' }}"
32-
elif [[ "${{ github.event_name }}" == "pull_request" ]]; then
33-
# PR - build key distributions
34-
DISTROS="humble,jazzy"
31+
DISTROS="${{ github.event.inputs.ros_distros || 'humble,iron,jazzy,kilted,rolling' }}"
3532
else
36-
# Scheduled - build all distributions
33+
# Always build all distributions
3734
DISTROS="humble,iron,jazzy,kilted,rolling"
3835
fi
3936
echo "Building for distributions: $DISTROS"

.github/workflows/smoke-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
workflow_run:
55
workflows: ["Generate Debian Packages"]
66
types: [completed]
7-
branches: [main]
87
workflow_dispatch: # Manual trigger
98
inputs:
109
ros_distros:

0 commit comments

Comments
 (0)