Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into 2024/add/tokenTyping
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnicegyu11 committed Dec 11, 2024
2 parents 8c6b4c6 + 415c94f commit ead2776
Show file tree
Hide file tree
Showing 352 changed files with 10,580 additions and 6,852 deletions.
35 changes: 0 additions & 35 deletions .flake8

This file was deleted.

Binary file added .github/rtd-build-instructions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions .github/scripts/update-version-patch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash -e

sed -i "/\[stable\]/{n;s/version=.*/version=$1/}" eachdist.ini
sed -i "/\[prerelease\]/{n;s/version=.*/version=$2/}" eachdist.ini

./scripts/eachdist.py update_patch_versions \
--stable_version=$1 \
--unstable_version=$2 \
--stable_version_prev=$3 \
--unstable_version_prev=$4

6 changes: 4 additions & 2 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,17 @@ jobs:
check-links:
runs-on: ubuntu-latest
needs: changedfiles
if: ${{needs.changedfiles.outputs.md}}
if: |
github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
&& ${{needs.changedfiles.outputs.md}}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
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
14 changes: 14 additions & 0 deletions .github/workflows/contrib.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Core Contrib Test

on:
push:
branches-ignore:
- 'release/*'
pull_request:

jobs:
contrib_0:
uses: open-telemetry/opentelemetry-python-contrib/.github/workflows/core_contrib_test_0.yml@main
with:
CORE_REPO_SHA: ${{ github.sha }}
CONTRIB_REPO_SHA: main
Loading

0 comments on commit ead2776

Please sign in to comment.