Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
blank_issues_enabled: false
contact_links:
- name: 📜 Uygunsuz İçeriği Bildir
url: https://github.com/BKT-DevOps/project-terraform-github/issues/new?template=report-abuse.yml
url: https://github.com/{{GITHUB_ORG}}/{{REPO_NAME}}/issues/new?template=report-abuse.yml
about: Taciz, nefret söylemi veya davranış kurallarına aykırı içerikleri bildirmek için kullanın.

- name: ✅ Yeni Görev Oluştur
url: https://github.com/BKT-DevOps/project-terraform-github/issues/new?template=task.yml
url: https://github.com/{{GITHUB_ORG}}/{{REPO_NAME}}/issues/new?template=task.yml
about: Proje yönetimi ve geliştirme görevleri için kullanın.

- name: 🐛 Hata Bildir
url: https://github.com/BKT-DevOps/project-terraform-github/issues/new?template=bug-report.yml
url: https://github.com/{{GITHUB_ORG}}/{{REPO_NAME}}/issues/new?template=bug-report.yml
about: Yazılım hatalarını ve beklenmeyen davranışları bildirin.

- name: 💡 Özellik İsteği
url: https://github.com/BKT-DevOps/project-terraform-github/issues/new?template=feature-request.yml
url: https://github.com/{{GITHUB_ORG}}/{{REPO_NAME}}/issues/new?template=feature-request.yml
about: Yeni özellik önerinizi veya geliştirme fikirlerinizi paylaşın.

- name: 💬 Topluluk Tartışmaları
url: https://github.com/BKT-DevOps/project-terraform-github/discussions
url: https://github.com/{{GITHUB_ORG}}/{{REPO_NAME}}/discussions
about: Sorular ve fikirler için topluluk tartışmalarına katılın.

- name: 📖 Dokümantasyon
url: https://github.com/BKT-DevOps/project-terraform-github/wiki
url: https://github.com/{{GITHUB_ORG}}/{{REPO_NAME}}/wiki
about: Proje dokümantasyonunu ve kılavuzları inceleyin.
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
blank_issues_enabled: false
contact_links:
- name: 📜 Uygunsuz İçeriği Bildir
url: https://github.com/BKT-DevOps/project-terraform-github/issues/new?template=report-abuse.yml
url: https://github.com/{{GITHUB_ORG}}/{{REPO_NAME}}/issues/new?template=report-abuse.yml
about: Taciz, nefret söylemi veya davranış kurallarına aykırı içerikleri bildirmek için kullanın.

- name: ✅ Yeni Görev Oluştur
url: https://github.com/BKT-DevOps/project-terraform-github/issues/new?template=task.yml
url: https://github.com/{{GITHUB_ORG}}/{{REPO_NAME}}/issues/new?template=task.yml
about: Proje yönetimi ve geliştirme görevleri için kullanın.

- name: 🐛 Hata Bildir
url: https://github.com/BKT-DevOps/project-terraform-github/issues/new?template=bug-report.yml
url: https://github.com/{{GITHUB_ORG}}/{{REPO_NAME}}/issues/new?template=bug-report.yml
about: Yazılım hatalarını ve beklenmeyen davranışları bildirin.

- name: 💡 Özellik İsteği
url: https://github.com/BKT-DevOps/project-terraform-github/issues/new?template=feature-request.yml
url: https://github.com/{{GITHUB_ORG}}/{{REPO_NAME}}/issues/new?template=feature-request.yml
about: Yeni özellik önerinizi veya geliştirme fikirlerinizi paylaşın.

- name: 💬 Topluluk Tartışmaları
url: https://github.com/BKT-DevOps/project-terraform-github/discussions
url: https://github.com/{{GITHUB_ORG}}/{{REPO_NAME}}/discussions
about: Sorular ve fikirler için topluluk tartışmalarına katılın.

- name: 📖 Dokümantasyon
url: https://github.com/BKT-DevOps/project-terraform-github/wiki
url: https://github.com/{{GITHUB_ORG}}/{{REPO_NAME}}/wiki
about: Proje dokümantasyonunu ve kılavuzları inceleyin.
7 changes: 5 additions & 2 deletions files.tf
Original file line number Diff line number Diff line change
Expand Up @@ -332,10 +332,10 @@ resource "github_repository_file" "issue_template_config" {

repository = github_repository.repo[each.key].name
branch = "main"
file = ".github/ISSUE_TEMPLATE/config.yml"
file = ".github/ISSUE_TEMPLATE/config.yml.tpl"
content = replace(
replace(
file("${path.module}/docs/ISSUE_TEMPLATE/config.yml"),
file("${path.module}/docs/ISSUE_TEMPLATE/config.yml.tpl"),
"{{GITHUB_ORG}}", var.github_organization
),
"{{REPO_NAME}}", each.key
Expand All @@ -344,6 +344,9 @@ resource "github_repository_file" "issue_template_config" {
overwrite_on_create = true

depends_on = [github_repository.repo]
lifecycle {
ignore_changes = [content]
}
}

# Abuse report template
Expand Down
Loading