Skip to content

Commit 9c6cfa9

Browse files
authored
Merge branch 'main' into codeboten/dont-recommend-internal-telemetry
2 parents 14fe781 + 9eb8429 commit 9c6cfa9

11 files changed

+55
-10
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Auto-update community members page
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
# At 03:41, every day
7+
- cron: 41 3 * * *
8+
9+
jobs:
10+
auto-update-versions:
11+
name: Auto-update community members page
12+
runs-on: ubuntu-24.04
13+
# Remove the if statement below when testing againt a fork
14+
if: github.repository == 'open-telemetry/opentelemetry.io'
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
19+
- name: Set up Node.js
20+
uses: actions/setup-node@v3
21+
with:
22+
node-version: '22'
23+
24+
- name: Install dependencies
25+
working-directory: ./scripts/generate-community-data
26+
run: npm install
27+
28+
- name: Run script
29+
working-directory: ./scripts/generate-community-data
30+
run: node generate.js ../../data/community/members.yaml
31+
env:
32+
GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
33+
34+
- name: Create pull request
35+
uses: peter-evans/create-pull-request@v7
36+
with:
37+
add-paths: 'data/community/members.yaml'
38+
committer:
39+
opentelemetrybot
40+
41+
token: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
42+
branch: update-community-members
43+
title: Update community members
44+
body: |
45+
This pull request contains automated updates to files by the GitHub Action.

data/registry/instrumentation-dotnet-aspnet-telemetryhttpmodule.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ isFirstParty: false
2121
package:
2222
registry: nuget
2323
name: OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule
24-
version: 1.9.0-beta.1
24+
version: 1.10.0-beta.1

data/registry/instrumentation-dotnet-aspnet.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ isFirstParty: false
1818
package:
1919
registry: nuget
2020
name: OpenTelemetry.Instrumentation.AspNet
21-
version: 1.9.0-beta.1
21+
version: 1.10.0-beta.1

data/registry/instrumentation-dotnet-aspnetcore.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ isFirstParty: false
1919
package:
2020
registry: nuget
2121
name: OpenTelemetry.Instrumentation.AspNetCore
22-
version: 1.9.0
22+
version: 1.10.0

data/registry/instrumentation-dotnet-entityframeworkcore.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ isFirstParty: false
2020
package:
2121
registry: nuget
2222
name: OpenTelemetry.Instrumentation.EntityFrameworkCore
23-
version: 1.0.0-beta.12
23+
version: 1.10.0-beta.1

data/registry/instrumentation-dotnet-grpcnetclient.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ isFirstParty: false
1919
package:
2020
registry: nuget
2121
name: OpenTelemetry.Instrumentation.GrpcNetClient
22-
version: 1.9.0-beta.1
22+
version: 1.10.0-beta.1

data/registry/instrumentation-dotnet-process.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ isFirstParty: false
1818
package:
1919
registry: nuget
2020
name: OpenTelemetry.Instrumentation.Process
21-
version: 1.0.0-alpha.6
21+
version: 1.10.0-beta.1

data/registry/instrumentation-dotnet-quartz.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ isFirstParty: false
1616
package:
1717
registry: nuget
1818
name: OpenTelemetry.Instrumentation.Quartz
19-
version: 1.0.0-beta.3
19+
version: 1.10.0-beta.1

data/registry/instrumentation-dotnet-sqlclient.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ isFirstParty: false
1919
package:
2020
registry: nuget
2121
name: OpenTelemetry.Instrumentation.SqlClient
22-
version: 1.9.0-beta.1
22+
version: 1.10.0-beta.1

data/registry/instrumentation-dotnet-stackexchangeredis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ isFirstParty: false
2020
package:
2121
registry: nuget
2222
name: OpenTelemetry.Instrumentation.StackExchangeRedis
23-
version: 1.9.0-beta.1
23+
version: 1.10.0-beta.1

data/registry/instrumentation-dotnet-wcf.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ isFirstParty: false
1818
package:
1919
registry: nuget
2020
name: OpenTelemetry.Instrumentation.Wcf
21-
version: 1.0.0-rc.18
21+
version: 1.10.0-beta.1

0 commit comments

Comments
 (0)