mirror of
https://github.com/mii443/AzooKeyKanaKanjiConverter.git
synced 2025-08-22 15:05:26 +00:00
Add .github/
This commit is contained in:
13
.github/FUNDING.yml
vendored
Normal file
13
.github/FUNDING.yml
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
github: [ensan-hcl]
|
||||
# patreon: # Replace with a single Patreon username
|
||||
# open_collective: # Replace with a single Open Collective username
|
||||
# ko_fi: # Replace with a single Ko-fi username
|
||||
# tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||
# community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||
# liberapay: # Replace with a single Liberapay username
|
||||
# issuehunt: # Replace with a single IssueHunt username
|
||||
# otechie: # Replace with a single Otechie username
|
||||
# lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
|
||||
# custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
35
.github/ISSUE_TEMPLATE/bug-report--不具合の報告-.md
vendored
Normal file
35
.github/ISSUE_TEMPLATE/bug-report--不具合の報告-.md
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
---
|
||||
name: Bug report (不具合の報告)
|
||||
about: 不具合の修正のための情報提供
|
||||
title: "[BUG] Description of bug"
|
||||
labels: bug
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Describe the bug (不具合を説明してください)**
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
**To Reproduce (どのような手順で実行すると不具合が生じるのか、詳しく教えてください)**
|
||||
Steps to reproduce the behavior:
|
||||
1. Go to '...'
|
||||
2. Click on '....'
|
||||
3. Scroll down to '....'
|
||||
4. See error
|
||||
|
||||
**Expected behavior (どういう動作になるのが正しいと思いますか?)**
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**Screenshots (スクリーンショットがあれば添付してください)**
|
||||
If applicable, add screenshots to help explain your problem.
|
||||
|
||||
**Environment (環境を詳しく教えてください):**
|
||||
- Device: [e.g. iPhone12]
|
||||
- iOS / iPadOS and its version: [e.g. iOS 16.2]
|
||||
- App Running Keyboard [e.g. LINE, notes, Slack]
|
||||
- App Version [e.g. 1.9]
|
||||
|
||||
**Is it possible to keep in touch with you on an ongoing basis to fix this bug? (バグの修正のため、継続的なやり取りは可能ですか?)**
|
||||
|
||||
**Additional context (その他共有したい事項があれば記述してください)**
|
||||
Add any other context about the problem here.
|
22
.github/ISSUE_TEMPLATE/feature-request--機能の提案-.md
vendored
Normal file
22
.github/ISSUE_TEMPLATE/feature-request--機能の提案-.md
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
name: Feature request (機能の提案)
|
||||
about: Suggest an idea for azooKey (azooKeyへの機能の提案)
|
||||
title: "[Feature Request] Description of feature"
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe. (提案は利用上の問題に関連していますか?記述してください。)**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like (あなたの考える解決策を記述してください)**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered (他の解決方法があれば記述してください)**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**If we were to implement this feature, will you help implement it? (もし提案する機能を実装する場合、実装を手伝う余裕はありますか?)**
|
||||
|
||||
**Additional context (その他共有したい事項があれば記述してください)**
|
||||
Add any other context or screenshots about the feature request here.
|
15
.github/ISSUE_TEMPLATE/question--質問-.md
vendored
Normal file
15
.github/ISSUE_TEMPLATE/question--質問-.md
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
name: Question (質問)
|
||||
about: Ask anything about azooKey
|
||||
title: "[Question]"
|
||||
labels: question
|
||||
assignees: ensan-hcl
|
||||
|
||||
---
|
||||
|
||||
<!-- 質問の内容を書いてください -->
|
||||
<!-- Write your question here -->
|
||||
|
||||
|
||||
<!-- あなたがそれを知りたい理由があれば教えてください -->
|
||||
<!-- If possible, write why you want to know about that -->
|
25
.github/workflows/swift.yml
vendored
Normal file
25
.github/workflows/swift.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
# This workflow will build a Swift project
|
||||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
|
||||
|
||||
name: Swift
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main", "develop" ]
|
||||
pull_request:
|
||||
branches: [ "main", "develop" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- uses: swift-actions/setup-swift@65540b95f51493d65f5e59e97dcef9629ddf11bf
|
||||
with:
|
||||
swift-version: "5.8"
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build
|
||||
run: swift build -v
|
||||
- name: Run tests
|
||||
run: swift test -v
|
Reference in New Issue
Block a user