diff --git a/.github/workflows/pr-actions.yml b/.github/workflows/pr-actions.yml index 28fdb9a22071..ba9a293e5724 100644 --- a/.github/workflows/pr-actions.yml +++ b/.github/workflows/pr-actions.yml @@ -101,9 +101,16 @@ jobs: env: GH_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }} + - name: Report success and ask to run full checks + if: ${{ !failure() && !cancelled() }} + run: | + gh pr comment $PR_NUM -b "fix:${PR_ACTION} was [successful]($GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID).\\n### NOW (RE-)RUN \`/fix:all\` to ensure that there are no other check issues." + env: + GH_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }} + - name: Report an error in the case of failure if: ${{ failure() || cancelled() }} run: | - gh pr comment $PR_NUM -b "fix:${PR_ACTION} run failed, please check $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID for details" + gh pr comment $PR_NUM -b "fix:${PR_ACTION} failed or was cancelled. For details, see $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID." env: GH_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }} diff --git a/content/en/docs/languages/go/instrumentation.md b/content/en/docs/languages/go/instrumentation.md index 41ca2e98046f..15987be1fc29 100644 --- a/content/en/docs/languages/go/instrumentation.md +++ b/content/en/docs/languages/go/instrumentation.md @@ -301,6 +301,8 @@ OpenTelemetry Go currently supports the following instruments: increments - Histogram, a synchronous instrument that supports arbitrary values that are statistically meaningful, such as histograms, summaries, or percentile +- Synchronous Gauge, a synchronous instrument that supports non-additive values, + such as room temperature. - Asynchronous Gauge, an asynchronous instrument that supports non-additive values, such as room temperature - UpDownCounter, a synchronous instrument that supports increments and