We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eba810a commit 2b01fc3Copy full SHA for 2b01fc3
.github/workflows/build_layer.yml
@@ -2,6 +2,12 @@ name: Build Layers for system-Tests
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ dd_trace_py_ref:
7
+ description: "Target Branch for dd-trace-py (leave empty for main)"
8
+ required: false
9
+ default: "main"
10
+ type: string
11
pull_request:
12
push:
13
branches:
@@ -21,7 +27,7 @@ jobs:
21
27
RUN_ID=$(gh run list \
22
28
--repo DataDog/dd-trace-py \
23
29
--workflow build_deploy.yml \
24
- --branch main \
30
+ --branch ${{ inputs.dd_trace_py_ref || 'main' }} \
25
31
--status success \
26
32
--limit 1 \
33
--json databaseId \
0 commit comments