Add retry dropped item metrics and an exhausted retry error marker for exporter helper retries #21984
Workflow file for this run
  
    
      This file contains hidden or 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
    
  
  
    
  | name: "Project: Tidy" | |
| on: | |
| pull_request_target: | |
| types: [opened, ready_for_review, synchronize, reopened, labeled, unlabeled] | |
| branches: | |
| - main | |
| permissions: read-all | |
| jobs: | |
| setup-environment: | |
| permissions: | |
| contents: write # for Git to git push | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-latest | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'dependency-major-update') && (github.actor == 'renovate[bot]' || contains(github.event.pull_request.labels.*.name, 'renovatebot')) }} | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| - uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 | |
| with: | |
| go-version: oldstable | |
| cache: false | |
| - name: Cache Go | |
| id: go-cache | |
| uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 | |
| with: | |
| path: | | |
| ~/go/bin | |
| ~/go/pkg/mod | |
| key: go-cache-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('**/go.sum') }} | |
| - name: Install dependencies | |
| if: steps.go-cache.outputs.cache-hit != 'true' | |
| run: make -j2 gomoddownload | |
| - name: go mod tidy | |
| run: | | |
| make gotidy | |
| git config user.name otelbot | |
| git config user.email [email protected] | |
| echo "git diff --exit-code || (git add . && git commit -m \"go mod tidy\" && git push)" | |
| git diff --exit-code || (git add . && git commit -m "go mod tidy" && git push) | |
| - uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1.3.0 | |
| with: | |
| labels: renovatebot |