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 698560f commit ed623f8Copy full SHA for ed623f8
1 file changed
.github/workflows/contrib.yml
@@ -19,5 +19,8 @@ jobs:
19
uses: open-telemetry/opentelemetry-python-contrib/.github/workflows/core_contrib_test_0.yml@main
20
with:
21
CORE_REPO_SHA: ${{ github.sha }}
22
- # DO NOT SUBMIT: Testing https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4165
23
- CONTRIB_REPO_SHA: d6b916049d9c1c7a3664a15a5cfbef722265dbd0
+ CONTRIB_REPO_SHA: ${{ github.event_name == 'pull_request' && (
+ contains(github.event.pull_request.labels.*.name, 'prepare-release') && github.event.pull_request.head.ref ||
24
+ contains(github.event.pull_request.labels.*.name, 'backport') && github.event.pull_request.base.ref ||
25
+ 'main'
26
+ ) || 'main' }}
0 commit comments