Skip to content

Commit 43804f3

Browse files
authored
fix workflows (#4256)
* fix workflows Signed-off-by: emdneto <[email protected]> * remove changelog line since it's working Signed-off-by: emdneto <[email protected]> --------- Signed-off-by: emdneto <[email protected]>
1 parent 06809f4 commit 43804f3

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/check-links.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
check-links:
2424
runs-on: ubuntu-latest
2525
needs: changedfiles
26-
if:
2726
if: |
2827
github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
2928
&& ${{needs.changedfiles.outputs.md}}
@@ -34,7 +33,7 @@ jobs:
3433
fetch-depth: 0
3534

3635
- name: Install markdown-link-check
37-
run: npm install -g markdown-link-check
36+
run: npm install -g markdown-link-check@v3.12.2
3837

3938
- name: Run markdown-link-check
4039
run: |

.github/workflows/lint_0.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
env:
1313
CORE_REPO_SHA: main
14-
CONTRIB_REPO_SHA: be0c78c8c11d05787edb53104c92a3a959f6a70c
14+
CONTRIB_REPO_SHA: main
1515
PIP_EXISTS_ACTION: w
1616

1717
jobs:

.github/workflows/misc_0.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
env:
1313
CORE_REPO_SHA: main
14-
CONTRIB_REPO_SHA: be0c78c8c11d05787edb53104c92a3a959f6a70c
14+
CONTRIB_REPO_SHA: main
1515
PIP_EXISTS_ACTION: w
1616

1717
jobs:
@@ -109,6 +109,8 @@ jobs:
109109
docs:
110110
name: docs
111111
runs-on: ubuntu-latest
112+
if: |
113+
github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
112114
steps:
113115
- name: Checkout repo @ SHA - ${{ github.sha }}
114116
uses: actions/checkout@v4

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,7 @@ commands =
334334
python {toxinidir}/scripts/public_symbols_checker.py
335335

336336
[testenv:generate-workflows]
337+
recreate = True
337338
deps =
338339
{env:CONTRIB_REPO}\#egg=generate_workflows_lib&subdirectory=.github/workflows/generate_workflows_lib
339340
commands =

0 commit comments

Comments
 (0)