Skip to content

Commit 4442f12

Browse files
authored
Merge branch 'main' into feat/support-multiple-metric-readers
2 parents b78004f + 93187f0 commit 4442f12

File tree

55 files changed

+404
-826
lines changed

Some content is hidden

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

55 files changed

+404
-826
lines changed

.github/workflows/benchmark.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@ on:
44
push:
55
branches: [ main ]
66

7+
permissions:
8+
contents: read
9+
710
jobs:
811
benchmark-tests:
12+
permissions:
13+
contents: write # required for pushing benchmark results to gh-pages
914
strategy:
1015
fail-fast: false
1116
matrix:

.github/workflows/changelog.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ on:
1010
branches:
1111
- main
1212
- next
13+
permissions:
14+
contents: read
1315
jobs:
1416
changelog:
1517
runs-on: ubuntu-latest

.github/workflows/close-stale.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ on:
33
schedule:
44
- cron: '30 6 * * 1'
55

6+
permissions:
7+
contents: read
8+
69
jobs:
710
stale:
11+
permissions:
12+
issues: write # required for closing stale issues
13+
pull-requests: write # required for closing stale PRs
814
runs-on: ubuntu-latest
915
steps:
1016
- uses: actions/stale@v9

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
branches: [ main ]
77
pull_request:
88

9+
permissions:
10+
security-events: write
11+
contents: read
12+
913
jobs:
1014
CodeQL-Build:
1115
runs-on: ubuntu-latest

.github/workflows/create-or-update-release-pr.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ on:
1818
- all # all release packages, including API, excluding semconv
1919
- semconv # only semantic convention package
2020

21+
permissions:
22+
contents: read
23+
2124
jobs:
2225
create-or-update-release-pr:
2326
runs-on: ubuntu-latest

.github/workflows/docs.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@ on:
44
release:
55
types: [published]
66

7+
permissions:
8+
contents: read
9+
710
jobs:
811
build-and-deploy:
12+
permissions:
13+
contents: write # required for deploying documentation to gh-pages
914
runs-on: ubuntu-latest
1015
steps:
1116
- name: Checkout

.github/workflows/e2e.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [main]
66
pull_request:
77

8+
permissions:
9+
contents: read
10+
811
jobs:
912
e2e-tests:
1013
strategy:

.github/workflows/lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
pull_request:
88
merge_group:
99

10+
permissions:
11+
contents: read
12+
1013
jobs:
1114
build:
1215
runs-on: ubuntu-latest

.github/workflows/peer-api.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
pull_request:
88
merge_group:
99

10+
permissions:
11+
contents: read
12+
1013
jobs:
1114
peer-api-check:
1215
runs-on: ubuntu-latest

.github/workflows/publish-to-npm.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name: Publish packages to NPM
33
on:
44
workflow_dispatch:
55

6+
permissions:
7+
contents: read
8+
69
jobs:
710
release-to-npm:
811
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)