File tree Expand file tree Collapse file tree 5 files changed +25
-0
lines changed
.github/local-actions/branch-manager
commit-message-based-labels Expand file tree Collapse file tree 5 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -68205,6 +68205,11 @@ var managedLabels = createTypedObject()({
6820568205 description: "Related to the documentation",
6820668206 name: "area: docs",
6820768207 commitCheck: (c) => c.type === "docs"
68208+ },
68209+ DETECTED_INFRA_CHANGE: {
68210+ description: "Related the build and CI infrastructure of the project",
68211+ name: "area: build & ci",
68212+ commitCheck: (c) => c.type === "build" || c.type === "ci"
6820868213 }
6820968214});
6821068215
Original file line number Diff line number Diff line change @@ -23344,6 +23344,11 @@ var managedLabels = createTypedObject()({
2334423344 description: "Related to the documentation",
2334523345 name: "area: docs",
2334623346 commitCheck: (c) => c.type === "docs"
23347+ },
23348+ DETECTED_INFRA_CHANGE: {
23349+ description: "Related the build and CI infrastructure of the project",
23350+ name: "area: build & ci",
23351+ commitCheck: (c) => c.type === "build" || c.type === "ci"
2334723352 }
2334823353});
2334923354
Original file line number Diff line number Diff line change @@ -32082,6 +32082,11 @@ var managedLabels = createTypedObject()({
3208232082 description: "Related to the documentation",
3208332083 name: "area: docs",
3208432084 commitCheck: (c) => c.type === "docs"
32085+ },
32086+ DETECTED_INFRA_CHANGE: {
32087+ description: "Related the build and CI infrastructure of the project",
32088+ name: "area: build & ci",
32089+ commitCheck: (c) => c.type === "build" || c.type === "ci"
3208532090 }
3208632091});
3208732092
Original file line number Diff line number Diff line change @@ -23344,6 +23344,11 @@ var managedLabels = createTypedObject()({
2334423344 description: "Related to the documentation",
2334523345 name: "area: docs",
2334623346 commitCheck: (c) => c.type === "docs"
23347+ },
23348+ DETECTED_INFRA_CHANGE: {
23349+ description: "Related the build and CI infrastructure of the project",
23350+ name: "area: build & ci",
23351+ commitCheck: (c) => c.type === "build" || c.type === "ci"
2334723352 }
2334823353});
2334923354
Original file line number Diff line number Diff line change @@ -27,4 +27,9 @@ export const managedLabels = createTypedObject<ManagedLabel>()({
2727 name : 'area: docs' ,
2828 commitCheck : ( c : Commit ) => c . type === 'docs' ,
2929 } ,
30+ DETECTED_INFRA_CHANGE : {
31+ description : 'Related the build and CI infrastructure of the project' ,
32+ name : 'area: build & ci' ,
33+ commitCheck : ( c : Commit ) => c . type === 'build' || c . type === 'ci' ,
34+ } ,
3035} ) ;
You can’t perform that action at this time.
0 commit comments