Skip to content

Commit

Permalink
chore: pulumi import github:index/repository:Repository nf-core-tf mo…
Browse files Browse the repository at this point in the history
…dules
  • Loading branch information
edmundmiller committed Jul 20, 2024
1 parent 5a60259 commit 77afb52
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pulumi/github/repos/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,41 @@

import pulumi
import pulumi_github as github


nf_core_tf = github.Repository(
"nf-core-tf",
allow_merge_commit=False,
allow_rebase_merge=False,
allow_squash_merge=False,
default_branch="master",
description="Repository to host tool-specific module files for the Nextflow DSL2 community!",
has_downloads=True,
has_issues=True,
has_projects=True,
homepage_url="https://nf-co.re",
merge_commit_message="",
merge_commit_title="",
name="modules",
security_and_analysis=github.RepositorySecurityAndAnalysisArgs(
secret_scanning=github.RepositorySecurityAndAnalysisSecretScanningArgs(
status="disabled",
),
secret_scanning_push_protection=github.RepositorySecurityAndAnalysisSecretScanningPushProtectionArgs(
status="disabled",
),
),
squash_merge_commit_message="",
squash_merge_commit_title="",
topics=[
"nextflow",
"pipelines",
"nf-test",
"modules",
"nf-core",
"dsl2",
"workflows",
],
visibility="public",
opts=pulumi.ResourceOptions(protect=True),
)

0 comments on commit 77afb52

Please sign in to comment.