-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into chore/localize-exporter-of-concepts
- Loading branch information
Showing
286 changed files
with
1,123 additions
and
577 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,7 +111,6 @@ quoteservice | |
react-native-app | ||
recommendationservice | ||
redis | ||
relref | ||
Rexed | ||
runbook | ||
runbooks | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Build Semantic Conventions (daily) | ||
|
||
on: | ||
schedule: | ||
# daily at 10:24 UTC | ||
- cron: '24 10 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-dev: | ||
uses: ./.github/workflows/build-dev.yml | ||
with: | ||
submodule_path_regex: semantic-conventions | ||
|
||
workflow-notification: | ||
needs: | ||
- build-dev | ||
if: always() | ||
uses: ./.github/workflows/reusable-workflow-notification.yml | ||
with: | ||
success: ${{ needs.build-dev.result == 'success' }} | ||
repo: open-telemetry/semantic-conventions | ||
secrets: | ||
opentelemetrybot_github_token: | ||
${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ jobs: | |
contents: read | ||
issues: write | ||
pull-requests: write | ||
if: github.repository_owner == 'open-telemetry' | ||
steps: | ||
- uses: dyladan/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# this is useful because notifications for scheduled workflows are only sent to the user who | ||
# initially created the given workflow | ||
name: Reusable - Workflow notification | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
success: | ||
type: boolean | ||
required: true | ||
repo: | ||
type: string | ||
required: false | ||
secrets: | ||
opentelemetrybot_github_token: | ||
type: string | ||
required: false | ||
|
||
jobs: | ||
workflow-notification: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Open issue or add comment if issue already open | ||
env: | ||
# need to use opentelemetrybot token when opening issues in other repos | ||
GH_TOKEN: | ||
${{ secrets.opentelemetrybot_github_token || secrets.GITHUB_TOKEN }} | ||
run: | | ||
if [ -z "${{ inputs.repo }}" ]; then | ||
repo="$GITHUB_REPOSITORY" | ||
title="Workflow failed: $GITHUB_WORKFLOW" | ||
body="See [$GITHUB_WORKFLOW #$GITHUB_RUN_NUMBER](https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID)." | ||
else | ||
repo="${{ inputs.repo }}" | ||
title="Workflow failed: $GITHUB_REPOSITORY $GITHUB_WORKFLOW" | ||
body="See [$GITHUB_REPOSITORY $GITHUB_WORKFLOW #$GITHUB_RUN_NUMBER](https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID)." | ||
fi | ||
# TODO (trask) search doesn't support exact phrases, so it's possible that this could grab the wrong issue | ||
number=$(gh issue list --repo $repo --search "in:title $title" --limit 1 --json number -q .[].number) | ||
echo $number | ||
echo ${{ inputs.success }} | ||
if [[ $number ]]; then | ||
if [[ "${{ inputs.success }}" == "true" ]]; then | ||
gh issue close $number \ | ||
--repo $repo | ||
else | ||
gh issue comment $number \ | ||
--repo $repo \ | ||
--body "$body" | ||
fi | ||
elif [[ "${{ inputs.success }}" == "false" ]]; then | ||
gh issue create --repo $repo \ | ||
--title "$title (#$GITHUB_RUN_NUMBER)" \ | ||
--body "$body" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule opentelemetry-specification
updated
27 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
--- | ||
title: 2024 | ||
weight: -2024 | ||
outputs: [HTML, RSS] | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
--- | ||
title: 2025 | ||
weight: -2025 | ||
outputs: [HTML, RSS] | ||
--- | ||
|
||
## Happy New Year! | ||
|
Oops, something went wrong.