From d26441bd73629656aa90150aedf223ed8ae13ff7 Mon Sep 17 00:00:00 2001 From: Martin Bruzina Date: Fri, 4 Jul 2025 18:19:05 +0200 Subject: [PATCH] fix: reversed lifecycle rules behavior --- README.md | 6 +++--- test.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f88ec63..f7dc4b8 100644 --- a/README.md +++ b/README.md @@ -182,10 +182,10 @@ organization: - ~DEFAULT_BRANCH exclude: # OPTIONAL, DEFAULT empty rules: - creation: false # OPTIONAL, DEFAULT true - update: false # OPTIONAL, DEFAULT true + creation: true # OPTIONAL, DEFAULT false + update: true # OPTIONAL, DEFAULT false update_allows_fetch_and_merge: false # OPTIONAL, DEFAULT false - deletion: false # OPTIONAL, DEFAULT true + deletion: true # OPTIONAL, DEFAULT false required_linear_history: true # OPTIONAL, DEFAULT false required_signatures: true # OPTIONAL, DEFAULT false pull_request: # OPTIONAL, DEFAULT empty MEANING does not require a pull request before merging diff --git a/test.yaml b/test.yaml index 1ad21e4..7f391b1 100644 --- a/test.yaml +++ b/test.yaml @@ -13,9 +13,9 @@ organization: include: - ~DEFAULT_BRANCH rules: - creation: false - update: false - deletion: false + creation: true + update: true + deletion: true pull_request: required_approving_review_count: 0 required_linear_history: true