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
7 changes: 4 additions & 3 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Code owners file.
# This file controls who is tagged for review for any given pull request.
#
# Learn about membership in OpenTelemetry community:
# https://github.com/open-telemetry/community/blob/main/guides/contributor/membership.md
#

# For anything not explicitly taken by someone else:
* @open-telemetry/java-approvers @open-telemetry/java-instrumentation-approvers
4 changes: 2 additions & 2 deletions .github/config/lychee.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ include_fragments = true

remap = [
# workaround for https://github.com/lycheeverse/lychee/issues/1729
'https://github.com/(.*?)/(.*?)/blob/(.*?)/(.*#.*)$ https://raw.githubusercontent.com/$1/$2/$3/$4',
"https://github.com/(.*?)/(.*?)/blob/(.*?)/(.*#.*)$ https://raw.githubusercontent.com/$1/$2/$3/$4",
]

exclude = [
'^https://github.com/.*#discussion_r.*$',
"^https://github.com/.*#discussion_r.*$",
]
1 change: 1 addition & 0 deletions .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ jobs:
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

# this needs to be in its own workflow in order to make OSSF scorecard happy
- uses: gradle/actions/wrapper-validation@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
4 changes: 2 additions & 2 deletions .github/workflows/prepare-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

create-pull-request-against-release-branch:
permissions:
contents: write # for Git to git push
contents: write # for git push to PR branch
runs-on: ubuntu-latest
needs:
- prereqs
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:

create-pull-request-against-main:
permissions:
contents: write # for Git to git push
contents: write # for git push to PR branch
runs-on: ubuntu-latest
needs:
- prereqs
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/reusable-misspell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ jobs:

- name: Install misspell
run: |
curl -L -o install-misspell.sh https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh
sh ./install-misspell.sh
curl -sfL https://raw.githubusercontent.com/golangci/misspell/master/install-misspell.sh | sh -s -- -b bin

- name: Run misspell
run: bin/misspell -error .
Loading