Update prom/prometheus Docker tag to v3.12.0 #1648
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: PR Size Labeler | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: pr-size-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| labeler: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| issues: write | |
| steps: | |
| - name: Harden runner (audit mode) | |
| uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4 | |
| with: | |
| egress-policy: audit | |
| - uses: codelytv/pr-size-labeler@095a41fca88b8764fd9e008ad269bcdb82bb38b9 # v1 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| xs_label: "size/xs" | |
| xs_max_size: "10" | |
| s_label: "size/s" | |
| s_max_size: "100" | |
| m_label: "size/m" | |
| m_max_size: "500" | |
| l_label: "size/l" | |
| l_max_size: "1000" | |
| xl_label: "size/xl" | |
| fail_if_xl: "false" | |
| message_if_xl: >- | |
| This PR exceeds the recommended size of 1000 lines. | |
| Consider splitting it into smaller, reviewable chunks. | |
| files_to_ignore: | | |
| package-lock.json | |
| yarn.lock | |
| pnpm-lock.yaml | |
| *.lock |