Skip to content

Commit d737920

Browse files
committed
fix: reversed lifecycle rules behavior
1 parent 58acc24 commit d737920

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,10 +182,10 @@ organization:
182182
- ~DEFAULT_BRANCH
183183
exclude: # OPTIONAL, DEFAULT empty
184184
rules:
185-
creation: false # OPTIONAL, DEFAULT true
186-
update: false # OPTIONAL, DEFAULT true
185+
creation: true # OPTIONAL, DEFAULT false
186+
update: true # OPTIONAL, DEFAULT false
187187
update_allows_fetch_and_merge: false # OPTIONAL, DEFAULT false
188-
deletion: false # OPTIONAL, DEFAULT true
188+
deletion: true # OPTIONAL, DEFAULT false
189189
required_linear_history: true # OPTIONAL, DEFAULT false
190190
required_signatures: true # OPTIONAL, DEFAULT false
191191
pull_request: # OPTIONAL, DEFAULT empty MEANING does not require a pull request before merging

test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ organization:
1313
include:
1414
- ~DEFAULT_BRANCH
1515
rules:
16-
creation: false
17-
update: false
18-
deletion: false
16+
creation: true
17+
update: true
18+
deletion: true
1919
pull_request:
2020
required_approving_review_count: 0
2121
required_linear_history: true

0 commit comments

Comments
 (0)