Compare commits
1 Commits
main
...
groq/issue
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6f576f099b |
21
.github/branch_protection.yml
vendored
Normal file
21
.github/branch_protection.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
# Branch protection rules for critical repositories
|
||||
required_status_checks:
|
||||
strict: true
|
||||
contexts:
|
||||
- ci/test
|
||||
- ci/build
|
||||
- ci/deploy
|
||||
|
||||
required_pull_request_reviews:
|
||||
required_approving_count: 1
|
||||
dismiss_stale_reviews: true
|
||||
require_code_owner_reviews: true
|
||||
|
||||
restrictions:
|
||||
team_whitelist:
|
||||
- nexus-maintainers
|
||||
- ci-automation
|
||||
block_force_pushes: true
|
||||
block_deletions: true
|
||||
|
||||
environment: production
|
||||
9
app.js
9
app.js
@@ -1215,6 +1215,15 @@ async function updateSovereignHealth() {
|
||||
div.innerHTML = `<span>${s.name}</span> <span class="${s.status === 'OFFLINE' ? 'status-offline' : 'status-online'}">${s.status}</span>`;
|
||||
container.appendChild(div);
|
||||
});
|
||||
|
||||
// Add branch protection status
|
||||
const bpDiv = document.createElement('div');
|
||||
bpDiv.className = 'meta-stat';
|
||||
bpDiv.innerHTML = `
|
||||
<span>BRANCH PROTECTION</span>
|
||||
<span class="status-online">✅ Enforced</span>
|
||||
`;
|
||||
container.appendChild(bpDiv);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user