Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
check-links:
runs-on: ubuntu-latest
needs: changedfiles
if:
if: |
github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
&& ${{needs.changedfiles.outputs.md}}
Expand All @@ -34,7 +33,7 @@ jobs:
fetch-depth: 0

- name: Install markdown-link-check
run: npm install -g markdown-link-check
run: npm install -g markdown-link-check@v3.12.2

- name: Run markdown-link-check
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

env:
CORE_REPO_SHA: main
CONTRIB_REPO_SHA: be0c78c8c11d05787edb53104c92a3a959f6a70c
CONTRIB_REPO_SHA: main
PIP_EXISTS_ACTION: w

jobs:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/misc_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

env:
CORE_REPO_SHA: main
CONTRIB_REPO_SHA: be0c78c8c11d05787edb53104c92a3a959f6a70c
CONTRIB_REPO_SHA: main
PIP_EXISTS_ACTION: w

jobs:
Expand Down Expand Up @@ -109,6 +109,8 @@ jobs:
docs:
name: docs
runs-on: ubuntu-latest
if: |
github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ commands =
python {toxinidir}/scripts/public_symbols_checker.py

[testenv:generate-workflows]
recreate = True
deps =
{env:CONTRIB_REPO}\#egg=generate_workflows_lib&subdirectory=.github/workflows/generate_workflows_lib
commands =
Expand Down
Loading