Skip to content

Commit

Permalink
Fix repo names
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Jul 16, 2024
1 parent a25be1a commit 8049044
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
name: {{ job.ui_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout Contrib Repo @ SHA - ${% raw %}{{ env.CONTRIB_REPO_SHA }}{% endraw %}
- name: Checkout contrib repo @ SHA - ${% raw %}{{ env.CONTRIB_REPO_SHA }}{% endraw %}
uses: actions/checkout@v4
with:
repository: open-telemetry/opentelemetry-python-contrib
ref: ${% raw %}{{ env.CONTRIB_REPO_SHA }}{% endraw %}

- name: Checkout Core Repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
- name: Checkout core repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
uses: actions/checkout@v4
with:
repository: open-telemetry/opentelemetry-python
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: {{ job.ui_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout Contrib Repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
uses: actions/checkout@v4

- name: Set up Python 3.12
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ on:
branches-ignore:
- 'release/*'
pull_request:
env:
CORE_REPO_SHA: main

jobs:
{%- for job in jobs %}
Expand All @@ -18,7 +16,7 @@ jobs:
name: {{ job.ui_name }}
runs-on: {{ job.os }}
steps:
- name: Checkout Contrib Repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
uses: actions/checkout@v4

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

- name: Config git to support long filenames
- name: Configure git to support long filenames
run: git config --system core.longpaths true
{%- endif %}

Expand Down

0 comments on commit 8049044

Please sign in to comment.