Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/build_layer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ name: Build Layers for system-Tests

on:
workflow_dispatch:
inputs:
dd_trace_py_ref:
description: "Target Branch for dd-trace-py (leave empty for main)"
required: false
default: "main"
type: string
pull_request:
push:
branches:
Expand All @@ -21,7 +27,7 @@ jobs:
RUN_ID=$(gh run list \
--repo DataDog/dd-trace-py \
--workflow build_deploy.yml \
--branch main \
--branch ${{ inputs.dd_trace_py_ref || 'main' }} \
--status success \
--limit 1 \
--json databaseId \
Expand Down
Loading