File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # ##
2+ # This file is synced from https://github.com/prometheus/prometheus
3+ # ##
14version : 2
25updates :
36 - package-ecosystem : " gomod"
@@ -30,6 +33,7 @@ updates:
3033 - " github/codeql-action*"
3134 # Exclude configs synced from upstream prometheus/prometheus.
3235 exclude-paths :
36+ - .github/workflows/approve-workflows.yml
3337 - .github/workflows/container_description.yml
3438 - .github/workflows/golangci-lint.yml
3539 - .github/workflows/govulncheck.yml
Original file line number Diff line number Diff line change 1+ ---
2+ # ##
3+ # This action is synced from https://github.com/prometheus/prometheus
4+ # ##
5+ name : Approve pending workflows
6+
7+ on :
8+ issue_comment :
9+ types : [created]
10+
11+ permissions : read-all
12+
13+ jobs :
14+ approve :
15+ if : >-
16+ github.event.issue.pull_request &&
17+ github.event.comment.body == '/workflow-approve' &&
18+ github.repository_owner == 'prometheus'
19+ runs-on : ubuntu-latest
20+ permissions :
21+ actions : write
22+ contents : read
23+ pull-requests : write
24+ steps :
25+ - uses : prometheus/promci/approve_workflows@370e8c15dcec50043cbe66f2f34633d9efc0a190
26+ with :
27+ github_token : ${{ github.token }}
Original file line number Diff line number Diff line change 11---
2+ # ##
3+ # This action is synced from https://github.com/prometheus/prometheus
4+ # ##
25name : govulncheck
36on :
47 pull_request :
Original file line number Diff line number Diff line change 11---
2+ ###
3+ # This file is synced from https://github.com/prometheus/prometheus
4+ ###
25extends: default
36ignore: |
47 **/node_modules
You can’t perform that action at this time.
0 commit comments