Repository: zenn-dev/zenn-community
Branch: master
Commit: 4b65e0f5e992
Files: 4
Total size: 1.9 KB
Directory structure:
gitextract_kav0szg7/
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.yml
│ │ └── feature_request.yml
│ └── workflows/
│ └── issue-to-project.yml
└── README.md
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.yml
================================================
name: Bug report
description: バグ報告
labels: [bug]
body:
- type: textarea
attributes:
label: 事象
description: 発生した事象をできるだけ詳細に記載してください。
validations:
required: true
- type: textarea # 複数存在する場合を想定
attributes:
label: 発生したページのURL
description: 発生したページのURLを記載してください。
- type: textarea
attributes:
label: 発生した画面のスクリーンショット
description: 可能であれば、発生時の画面のスクリーンショットを添付してください。
- type: textarea
attributes:
label: 再現方法
description: 再現性がある場合は、手順を記載してください。
- type: textarea
attributes:
label: 環境
description: 環境依存の可能性がある場合は記載してください。
placeholder: |
- Device: [e.g. iPhone12]
- OS: [e.g. iOS14.4]
- Browser: [e.g. chrome 89.0.4389.72]
================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.yml
================================================
name: Feature request
description: 機能リクエスト
labels: [Feature request]
body:
- type: textarea
attributes:
label: 提案・要望
description: 提案や要望の内容を記載してください。
validations:
required: true
- type: textarea
attributes:
label: 背景
description: 困っていることや不便なことがあれば記載してください。
- type: input
attributes:
label: 関連
description: 関連するIssueがあれば記載してください。
================================================
FILE: .github/workflows/issue-to-project.yml
================================================
name: Assign new issue to project
on:
issues:
types: [opened, labeled]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
assign_one_project:
runs-on: ubuntu-latest
name: Assign to One Project
steps:
- name: Assign NEW issues to Backlog
uses: srggrs/assign-one-project-github-action@1.3.1
if: github.event.action == 'opened'
with:
project: 'https://github.com/zenn-dev/zenn-roadmap/projects/1'
column_name: '📝 Backlog'
================================================
FILE: README.md
================================================
# zenn-community
このリポジトリは、Zennのユーザが要望や質問などを投稿できる場所です。
## 利用方法
- [New Issue](https://github.com/zenn-dev/zenn-community/issues/new/choose)から、該当するカテゴリのテンプレートを選択して投稿してください。
- セキュリティやプライバシーに関わる質問・報告は、[お問い合わせフォーム](https://zenn.dev/inquiry)からご連絡ください。
- Issueの進行状況は [Roadmap](https://github.com/orgs/zenn-dev/projects/16) をご参照ください。
gitextract_kav0szg7/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── feature_request.yml │ └── workflows/ │ └── issue-to-project.yml └── README.md
Condensed preview — 4 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (3K chars).
[
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"chars": 740,
"preview": "name: Bug report\ndescription: バグ報告\nlabels: [bug]\nbody:\n - type: textarea\n attributes:\n label: 事象\n descript"
},
{
"path": ".github/ISSUE_TEMPLATE/feature_request.yml",
"chars": 392,
"preview": "name: Feature request\ndescription: 機能リクエスト\nlabels: [Feature request]\nbody:\n - type: textarea\n attributes:\n labe"
},
{
"path": ".github/workflows/issue-to-project.yml",
"chars": 484,
"preview": "name: Assign new issue to project\n\non:\n issues:\n types: [opened, labeled]\nenv:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TO"
},
{
"path": "README.md",
"chars": 328,
"preview": "# zenn-community\n\nこのリポジトリは、Zennのユーザが要望や質問などを投稿できる場所です。\n\n## 利用方法\n\n- [New Issue](https://github.com/zenn-dev/zenn-communit"
}
]
About this extraction
This page contains the full source code of the zenn-dev/zenn-community GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 4 files (1.9 KB), approximately 858 tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.