Skip to content

Commit 76f52f7

Browse files
authored
Merge branch 'main' into move-urllib-to-pook
2 parents f72da60 + afbe6fd commit 76f52f7

463 files changed

Lines changed: 26604 additions & 19818 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ body:
88
value: |
99
Thanks for taking the time to fill out this bug report! Please make sure to fill out the entire form below, providing as much context as you can in order to help us triage and track down your bug as quickly as possible.
1010
11-
Before filing a bug, please be sure you have searched through [existing bugs](https://github.com/open-telemetry/opentelemetry-python-contrib/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Abug) to see if your bug is already addressed.
12-
11+
Before filing a bug, please be sure you have searched through [existing bugs](https://github.com/open-telemetry/opentelemetry-python-contrib/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Abug) to see if your bug is already addressed.
12+
1313
- type: textarea
1414
id: environment
1515
attributes:
@@ -18,9 +18,9 @@ body:
1818
Please describe any aspect of your environment relevant to the problem, including your Python version, [platform](https://docs.python.org/3/library/platform.html), version numbers of installed dependencies, information about your cloud hosting provider, etc. If you're reporting a problem with a specific version of a library in this repo, please check whether the problem has been fixed on main.
1919
value: |
2020
OS: (e.g, Ubuntu)
21-
Python version: (e.g., Python 3.9.10)
21+
Python version: (e.g., Python 3.10.0)
2222
Package version: (e.g., 0.46.0)
23-
23+
2424
- type: textarea
2525
attributes:
2626
label: What happened?

.github/workflows/ci.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Do not edit this file.
2+
# This file is generated automatically by executing tox -e generate-workflows
3+
4+
name: CI
5+
6+
on:
7+
push:
8+
branches:
9+
- 'main'
10+
pull_request:
11+
12+
permissions:
13+
contents: read
14+
15+
concurrency:
16+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
17+
cancel-in-progress: true
18+
19+
jobs:
20+
misc:
21+
uses: ./.github/workflows/misc.yml
22+
lint:
23+
uses: ./.github/workflows/lint.yml
24+
tests:
25+
uses: ./.github/workflows/test.yml
26+
27+
check:
28+
if: always()
29+
needs:
30+
- misc
31+
- lint
32+
- tests
33+
runs-on: ubuntu-latest
34+
steps:
35+
- name: Decide whether the needed jobs succeeded or failed
36+
uses: re-actors/alls-green@release/v1
37+
with:
38+
jobs: ${{ toJSON(needs) }}

0 commit comments

Comments
 (0)