Commit 8049044 1 parent a25be1a commit 8049044 Copy full SHA for 8049044
File tree 3 files changed +5
-7
lines changed
.github/workflows/generate_workflows_lib/src/generate_workflows_lib
3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ jobs:
20
20
name: {{ job.ui_name }}
21
21
runs-on: ubuntu-latest
22
22
steps:
23
- - name: Checkout Contrib Repo @ SHA - ${% raw %} {{ env.CONTRIB_REPO_SHA }}{% endraw %}
23
+ - name: Checkout contrib repo @ SHA - ${% raw %} {{ env.CONTRIB_REPO_SHA }}{% endraw %}
24
24
uses: actions/checkout@v4
25
25
with:
26
26
repository: open-telemetry/opentelemetry-python-contrib
27
27
ref: ${% raw %} {{ env.CONTRIB_REPO_SHA }}{% endraw %}
28
28
29
- - name: Checkout Core Repo @ SHA - ${% raw %} {{ github.sha }}{% endraw %}
29
+ - name: Checkout core repo @ SHA - ${% raw %} {{ github.sha }}{% endraw %}
30
30
uses: actions/checkout@v4
31
31
with:
32
32
repository: open-telemetry/opentelemetry-python
Original file line number Diff line number Diff line change 18
18
name: {{ job.ui_name }}
19
19
runs-on: ubuntu-latest
20
20
steps:
21
- - name: Checkout Contrib Repo @ SHA - ${% raw %} {{ github.sha }}{% endraw %}
21
+ - name: Checkout repo @ SHA - ${% raw %} {{ github.sha }}{% endraw %}
22
22
uses: actions/checkout@v4
23
23
24
24
- name: Set up Python 3.12
Original file line number Diff line number Diff line change 8
8
branches-ignore:
9
9
- 'release/*'
10
10
pull_request:
11
- env:
12
- CORE_REPO_SHA: main
13
11
14
12
jobs:
15
13
{% - for job in jobs %}
18
16
name: {{ job.ui_name }}
19
17
runs-on: {{ job.os }}
20
18
steps:
21
- - name: Checkout Contrib Repo @ SHA - ${% raw %} {{ github.sha }}{% endraw %}
19
+ - name: Checkout repo @ SHA - ${% raw %} {{ github.sha }}{% endraw %}
22
20
uses: actions/checkout@v4
23
21
24
22
- name: Set up Python {{ job.python_version }}
30
28
run: pip install tox
31
29
{% - if job .os == "windows-latest" %}
32
30
33
- - name: Config git to support long filenames
31
+ - name: Configure git to support long filenames
34
32
run: git config --system core.longpaths true
35
33
{% - endif %}
36
34
You can’t perform that action at this time.
0 commit comments