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 4686bef commit 1d03c34Copy full SHA for 1d03c34
.github/workflows/docs.yml
@@ -10,12 +10,20 @@ on:
10
- 'instrumentation/**'
11
- 'opentelemetry-python/opentelemetry-api/src/opentelemetry/**'
12
- 'opentelemetry-python/opentelemetry-sdk/src/opentelemetry/sdk/**'
13
+env:
14
+ CONTRIB_REPO_SHA: master
15
16
jobs:
17
docs:
18
runs-on: ubuntu-latest
19
steps:
20
- uses: actions/checkout@v2
21
+ - name: Checkout Contrib Repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
22
+ uses: actions/checkout@v2
23
+ with:
24
+ repository: open-telemetry/opentelemetry-python-contrib
25
+ ref: ${{ env.CONTRIB_REPO_SHA }}
26
+ path: opentelemetry-python-contrib
27
- name: Set up Python py38
28
uses: actions/setup-python@v2
29
with:
0 commit comments