Skip to content

Commit 8049044

Browse files
committed
Fix repo names
1 parent a25be1a commit 8049044

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/contrib.yml.j2

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
name: {{ job.ui_name }}
2121
runs-on: ubuntu-latest
2222
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 %}
2424
uses: actions/checkout@v4
2525
with:
2626
repository: open-telemetry/opentelemetry-python-contrib
2727
ref: ${% raw %}{{ env.CONTRIB_REPO_SHA }}{% endraw %}
2828

29-
- name: Checkout Core Repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
29+
- name: Checkout core repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
3030
uses: actions/checkout@v4
3131
with:
3232
repository: open-telemetry/opentelemetry-python

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/lint.yml.j2

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: {{ job.ui_name }}
1919
runs-on: ubuntu-latest
2020
steps:
21-
- name: Checkout Contrib Repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
21+
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
2222
uses: actions/checkout@v4
2323

2424
- name: Set up Python 3.12

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/test.yml.j2

+2-4
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ on:
88
branches-ignore:
99
- 'release/*'
1010
pull_request:
11-
env:
12-
CORE_REPO_SHA: main
1311

1412
jobs:
1513
{%- for job in jobs %}
@@ -18,7 +16,7 @@ jobs:
1816
name: {{ job.ui_name }}
1917
runs-on: {{ job.os }}
2018
steps:
21-
- name: Checkout Contrib Repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
19+
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
2220
uses: actions/checkout@v4
2321

2422
- name: Set up Python {{ job.python_version }}
@@ -30,7 +28,7 @@ jobs:
3028
run: pip install tox
3129
{%- if job.os == "windows-latest" %}
3230

33-
- name: Config git to support long filenames
31+
- name: Configure git to support long filenames
3432
run: git config --system core.longpaths true
3533
{%- endif %}
3634

0 commit comments

Comments
 (0)