コンテンツにスキップ

イシューテンプレート

各種イシューのテンプレートです。

パス: .github/ISSUE_TEMPLATE/bug_report.yaml

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: バグ報告
description: バグ報告用のテンプレート
body:
  - type: textarea
    attributes:
      label: バグの概要
      description: バグの内容を簡潔に記入してください。
    validations:
      required: true
  - type: textarea
    attributes:
      label: 再現手順
      description: バグを再現するための手順を記入してください。
    validations:
      required: true
  - type: textarea
    attributes:
      label: 期待される動作
      description: 正常時に期待される動作を記入してください。
    validations:
      required: false
  - type: textarea
    attributes:
      label: 実際の動作
      description: 実際に発生している動作を記入してください。
    validations:
      required: false
  - type: textarea
    attributes:
      label: スクリーンショット
      description: 必要に応じてスクリーンショットを添付してください。
    validations:
      required: false
  - type: textarea
    attributes:
      label: 環境
      description: 発生した環境(OS、ブラウザ、バージョンなど)を記入してください。
    validations:
      required: false
  - type: textarea
    attributes:
      label: その他の情報
      description: その他に関連する情報があれば記入してください。
    validations:
      required: false       

パス: .github/ISSUE_TEMPLATE/feature_request.yaml

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: 機能リクエスト
description: 機能リクエスト用のテンプレート
body:
  - type: textarea
    attributes:
      label: 機能の概要
      description: 追加・変更する機能の内容を簡潔に記入してください。
    validations:
      required: true
  - type: textarea
    attributes:
      label: 背景
      description: 機能の追加・変更の背景を記入してください。
    validations:
      required: true
  - type: textarea
    attributes:
      label: 目的
      description: 機能の追加・変更の目的を記入してください。
    validations:
      required: true
  - type: textarea
    attributes:
      label: 提案
      description: 機能の追加・変更の提案を記入してください。
    validations:
      required: true
  - type: textarea
    attributes:
      label: その他の情報
      description: その他に関連する情報があれば記入してください。
    validations:
      required: false

パス: .github/ISSUE_TEMPLATE/request.yaml

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: 要望
description: 要望用のテンプレート
body:
  - type: textarea
    attributes:
      label: 要望の概要
      description: 要望の内容を簡潔に記入してください。
    validations:
      required: true
  - type: textarea
    attributes:
      label: 背景
      description: 要望の背景を記入してください。
    validations:
      required: true
  - type: textarea
    attributes:
      label: 目的
      description: 要望の目的を記入してください。
    validations:
      required: true
  - type: textarea
    attributes:
      label: 提案
      description: 要望の提案を記入してください。
    validations:
      required: true
  - type: textarea
    attributes:
      label: その他の情報
      description: その他に関連する情報があれば記入してください。
    validations:
      required: false

パス: .github/ISSUE_TEMPLATE/task.yaml

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: タスク
description: タスク用のテンプレート
body:
  - type: textarea
    attributes:
      label: タスクの概要
      description: タスクの内容を簡潔に記入してください。
    validations:
      required: true
  - type: textarea
    attributes:
      label: 目的
      description: タスクの目的を記入してください。
    validations:
      required: true
  - type: textarea
    attributes:
      label: 作業内容
      description: タスクの作業内容を記入してください。
    validations:
      required: true
  - type: textarea
    attributes:
      label: その他の情報
      description: その他に関連する情報があれば記入してください。
    validations:
      required: false

コメント