Skip to content

Commit

Permalink
initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
netomi authored and corrosion-bot committed Jul 15, 2024
1 parent cc26ad2 commit 6d3d2bc
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions otterdog/eclipse-corrosion.jsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
local orgs = import 'vendor/otterdog-defaults/otterdog-defaults.libsonnet';

orgs.newOrg('eclipse-corrosion') {
settings+: {
description: "",
name: "Eclipse Corrosion™",
web_commit_signoff_required: false,
workflows+: {
actions_can_approve_pull_request_reviews: false,
},
},
webhooks+: [
orgs.newOrgWebhook('https://ci.eclipse.org/corrosion/github-webhook/') {
content_type: "json",
events+: [
"pull_request",
"push"
],
},
],
_repositories+:: [
orgs.newRepo('corrosion') {
allow_merge_commit: true,
allow_update_branch: false,
default_branch: "master",
delete_branch_on_merge: false,
dependabot_security_updates_enabled: true,
description: "Eclipse Corrosion - Rust edition in Eclipse IDE",
gh_pages_build_type: "legacy",
gh_pages_source_branch: "master",
gh_pages_source_path: "/",
homepage: "",
topics+: [
"eclipse-ide",
"hacktoberfest",
"redox",
"rls",
"rust",
"rust-language-server"
],
web_commit_signoff_required: false,
webhooks: [
orgs.newRepoWebhook('https://notify.travis-ci.org') {
events+: [
"create",
"delete",
"issue_comment",
"member",
"public",
"pull_request",
"push",
"repository"
],
},
],
branch_protection_rules: [
orgs.newBranchProtectionRule('master-before-squash') {
required_approving_review_count: null,
requires_commit_signatures: true,
requires_pull_request: false,
requires_status_checks: false,
requires_strict_status_checks: true,
},
],
environments: [
orgs.newEnvironment('github-pages'),
],
},
],
}

0 comments on commit 6d3d2bc

Please sign in to comment.