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
6 changes: 1 addition & 5 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
#
# Learn about membership in OpenTelemetry community:
# https://github.com/open-telemetry/community/blob/main/guides/contributor/membership.md
#
#
# Learn about CODEOWNERS file format:
# https://help.github.com/en/articles/about-code-owners
# https://github.com/open-telemetry/community/blob/main/guides/contributor/membership.md
#

* @open-telemetry/java-contrib-approvers
3 changes: 3 additions & 0 deletions .github/config/lychee.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Lychee configuration file
# See https://lychee.cli.rs/config/

timeout = 30
retry_wait_time = 5
max_retries = 6
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main
- release/*
workflow_dispatch:

permissions:
contents: read
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ name: Gradle wrapper validation

on:
push:
branches:
- main
- release/*
pull_request:
merge_group:

Expand All @@ -17,4 +14,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
3 changes: 2 additions & 1 deletion .github/workflows/ossf-scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
- cron: "43 6 * * 5" # weekly at 06:43 (UTC) on Friday
workflow_dispatch:

permissions: read-all
permissions:
contents: read

jobs:
analysis:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/owasp-dependency-check-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ name: OWASP dependency check (daily)

on:
schedule:
# daily at 1:30 UTC
- cron: "30 1 * * *"
- cron: "30 1 * * *" # daily at 1:30 UTC
workflow_dispatch:

permissions:
Expand Down
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 @@ -82,7 +82,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
4 changes: 1 addition & 3 deletions .github/workflows/reusable-misspell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +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 .