File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Combine Dependabot PRs
2+
3+ on :
4+ workflow_dispatch : # allows you to manually trigger the workflow
5+ inputs :
6+ ci_required :
7+ type : choice
8+ description : Require a successful build before branches are included
9+ options :
10+ - ' YES'
11+ - ' NO'
12+ required : false
13+ default : ' YES'
14+
15+ # The minimum permissions required to run this Action
16+ permissions :
17+ contents : write
18+ pull-requests : write
19+ checks : read
20+
21+ jobs :
22+ combine-prs :
23+ runs-on : ubuntu-latest
24+
25+ steps :
26+ - name : combine-prs
27+ id : combine-prs
28+ 29+ with :
30+ ci_required : ${{ inputs.ci_required == 'YES' }}
31+ labels : dependencies
32+ pr_title : MESH-2092 Combined Dependabot PRs
33+ combine_branch_name : mesh-2092-dependabot-combined
34+ pr_body_header : Combined Dependabot PRs
You can’t perform that action at this time.
0 commit comments