Skip to content
This repository was archived by the owner on May 29, 2024. It is now read-only.

Add FabricBot config #46

Merged
merged 1 commit into from
Dec 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
149 changes: 149 additions & 0 deletions .github/fabricbot.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
{
"tasks": [
{
"taskType": "scheduled",
"capabilityId": "ScheduledPR",
"subCapability": "ScheduledPR",
"version": "1.0",
"config": {
"head": "main",
"base": "live",
"title": "Merge main into live",
"body": "Please don't squash-merge this PR.",
"taskName": "Push to live branch (publish)",
"frequency": [
{
"weekDay": 0,
"hours": [
0,
3,
6,
9,
12,
15,
18,
21
],
"timezoneOffset": 0
},
{
"weekDay": 1,
"hours": [
0,
3,
6,
9,
12,
15,
18,
21
],
"timezoneOffset": 0
},
{
"weekDay": 2,
"hours": [
0,
3,
6,
9,
12,
15,
18,
21
],
"timezoneOffset": 0
},
{
"weekDay": 3,
"hours": [
0,
3,
6,
9,
12,
15,
18,
21
],
"timezoneOffset": 0
},
{
"weekDay": 4,
"hours": [
0,
3,
6,
9,
12,
15,
18,
21
],
"timezoneOffset": 0
},
{
"weekDay": 5,
"hours": [
0,
3,
6,
9,
12,
15,
18,
21
],
"timezoneOffset": 0
},
{
"weekDay": 6,
"hours": [
0,
3,
6,
9,
12,
15,
18,
21
],
"timezoneOffset": 0
}
]
},
"disabled": false
},
{
"taskType": "trigger",
"capabilityId": "PrAutoLabel",
"subCapability": "Branch",
"version": "1.0",
"config": {
"taskName": "Label PRs to live",
"configs": [
{
"label": "auto-merge",
"branchName": "live"
}
]
}
},
{
"taskType": "trigger",
"capabilityId": "AutoMerge",
"subCapability": "AutoMerge",
"version": "1.0",
"config": {
"taskName": "Auto-merge main to live",
"label": "auto-merge",
"mergeType": "merge",
"removeLabelOnPush": false,
"requireAllStatuses": false,
"requireSpecificCheckRuns": false,
"minMinutesOpen": "0"
}
}
],
"userGroups": []
}