forked from Homebrew/homebrew-core
-
Notifications
You must be signed in to change notification settings - Fork 0
151 lines (147 loc) · 6.05 KB
/
triage.yml
File metadata and controls
151 lines (147 loc) · 6.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
name: Triage tasks
on: pull_request_target
concurrency:
group: "triage-${{ github.event.number }}"
cancel-in-progress: true
jobs:
triage:
runs-on: ubuntu-latest
steps:
- name: Check commit format
uses: Homebrew/actions/check-commit-format@master
with:
token: ${{secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN}}
- name: Label pull request
uses: Homebrew/actions/label-pull-requests@master
if: always()
with:
token: ${{secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN}}
def: |
[
{
"label": "workflows",
"path": ".github/workflows/.+"
}, {
"label": "new formula",
"status": "added",
"path": "Formula/.+"
}, {
"label": "marked for removal/rejection",
"status": "removed",
"path": "Formula/.+"
}, {
"label": "bottle unneeded",
"path": "Formula/.+",
"content": "\n (bottle :unneeded)\n"
}, {
"label": "no ARM bottle",
"path": "Formula/.+",
"content": "\n sha256.* big_sur: +\"[a-fA-F0-9]+\"\n",
"missing_content": "\n sha256.* arm64_big_sur: +\"[a-fA-F0-9]+\"\n"
}, {
"label": "formula deprecated",
"path": "Formula/.+",
"content": "\n deprecate!.*\n"
}, {
"label": "formula disabled",
"path": "Formula/.+",
"content": "\n disable!.*\n"
}, {
"label": "legacy",
"path": "Formula/.+@.+",
"except": [
"Formula/openssl@1.1.rb",
"Formula/openssl@3.0.rb",
"Formula/python@3.9.rb",
"Formula/python-tk@3.9.rb"
]
}, {
"label": "missing license",
"path": "Formula/.+",
"missing_content": "\n license .+\n"
}, {
"label": "deprecated license",
"path": "Formula/.+",
"content": "license .*\"(GPL|LGPL|AGPL|GFDL)-[0-9].[0-9][+]?\".*"
}, {
"label": "go",
"path": "Formula/.+",
"content": "depends_on \"go(@[0-9.]+)?\""
}, {
"label": "haskell",
"path": "Formula/.+",
"content": "depends_on \"(ghc|haskell-stack)(@[0-9.]+)?\""
}, {
"label": "java",
"path": "Formula/.+",
"content": "depends_on \"openjdk(@[0-9.]+)?\""
}, {
"label": "linux-only",
"path": "Formula/.+",
"content": "depends_on :linux"
}, {
"label": "macos-only",
"path": "Formula/.+",
"content": "depends_on :macos"
}, {
"label": "lua",
"path": "Formula/.+",
"content": "depends_on \"(lua|luajit|luajit-openresty)(@[0-9.]+)?\""
}, {
"label": "nodejs",
"path": "Formula/.+",
"content": "depends_on \"node(@[0-9.]+)?\""
}, {
"label": "ocaml",
"path": "Formula/.+",
"content": "depends_on \"ocaml(@[0-9.]+)?\""
}, {
"label": "perl",
"path": "Formula/.+",
"content": "(depends_on|uses_from_macos) \"perl(@[0-9.]+)?\""
}, {
"label": "php",
"path": "Formula/.+",
"content": "(depends_on|uses_from_macos) \"php(@[0-9.]+)?\""
}, {
"label": "python",
"path": "Formula/.+",
"content": "(depends_on|uses_from_macos) \"python(@[0-9.]+)?\"",
"missing_content": "(depends_on|uses_from_macos) \"python(@[0-9.]+)?\" => \\[?:(build|test)"
}, {
"label": "ruby",
"path": "Formula/.+",
"content": "(depends_on|uses_from_macos) \"ruby(@[0-9.]+)?\""
}, {
"label": "rust",
"path": "Formula/.+",
"content": "depends_on \"rust(@[0-9.]+)?\""
}, {
"label": "swift",
"path": "Formula/.+",
"content": "system \"swift\", \"build\""
}, {
"label": "CI-long-timeout",
"path": "Formula/(boost|qt).rb",
"keep_if_no_match": true
}, {
"label": "CI-build-dependents-from-source",
"path": "Formula/(cabal-install|docbook-xsl|emscripten|erlang|ghc|go|ocaml|ocaml-findlib|ocaml-num|openjdk|rust).rb",
"keep_if_no_match": true
}, {
"label": "CI-skip-recursive-dependents",
"path": "Formula/(gettext|openssl).rb",
"keep_if_no_match": true
}, {
"label": "CI-linux-wheezy",
"path": "Formula/(zlib|patchelf|binutils).rb",
"keep_if_no_match": true
}, {
"label": "CI-linux-self-hosted",
"path": "Formula/(gdbm|go|openssl@1.1|python@3.9|rust|sqlite).rb",
"keep_if_no_match": true
}, {
"label": "bump-formula-pr",
"pr_body_content": "Created with `brew bump-formula-pr`"
}
]