From 7f68569c2310d35602e67d90467b6b1a063b0b49 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 16 Mar 2026 21:57:56 +0000 Subject: [PATCH 1/2] Initial plan From 879aaea9f4e0f93deabbaa22143b13f39fdf6110 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 16 Mar 2026 21:59:59 +0000 Subject: [PATCH 2/2] feat(github): add ruleset for develop branch Co-authored-by: andrmaz <60042277+andrmaz@users.noreply.github.com> --- .github/rulesets/develop.json | 49 +++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/rulesets/develop.json diff --git a/.github/rulesets/develop.json b/.github/rulesets/develop.json new file mode 100644 index 0000000..7941c64 --- /dev/null +++ b/.github/rulesets/develop.json @@ -0,0 +1,49 @@ +{ + "name": "develop", + "target": "branch", + "enforcement": "active", + "conditions": { + "ref_name": { + "include": ["refs/heads/develop"], + "exclude": [] + } + }, + "rules": [ + { + "type": "deletion" + }, + { + "type": "non_fast_forward" + }, + { + "type": "pull_request", + "parameters": { + "dismiss_stale_reviews_on_push": false, + "require_code_owner_review": false, + "require_last_push_approval": false, + "required_approving_review_count": 1, + "required_review_thread_resolution": false + } + }, + { + "type": "required_status_checks", + "parameters": { + "required_status_checks": [ + { + "context": "Lint" + }, + { + "context": "Format" + }, + { + "context": "Typecheck" + }, + { + "context": "Build" + } + ], + "strict_required_status_checks_policy": true + } + } + ] +}