@@ -4,6 +4,29 @@ This repository contains 20 detailed improvement issue templates in the `.github
44
55## Quick Start
66
7+ ## Method 1: GitHub Actions Workflow (Recommended for Maintainers)
8+
9+ The easiest way to create all issues at once using automation:
10+
11+ 1 . Go to the ** Actions** tab in your GitHub repository
12+ 2 . Select ** "Create GitHub Issues from Templates"** workflow from the left sidebar
13+ 3 . Click ** "Run workflow"** button (top right)
14+ 4 . Type ` create ` in the confirmation field to confirm
15+ 5 . Click the green ** "Run workflow"** button
16+
17+ ** What happens:**
18+ - ✅ Automatically creates all 20 issues with proper formatting
19+ - ✅ Applies correct titles and labels from frontmatter
20+ - ✅ Maintains proper ordering (01-20)
21+ - ✅ No local setup required
22+ - ✅ Uses GitHub's built-in authentication
23+
24+ ** Note:** This workflow requires write permissions to create issues. If you're a repository maintainer, this is the recommended approach.
25+
26+ ---
27+
28+ ## Method 2: Automated Script (Local Development)
29+
730### Prerequisites
831
9321 . ** GitHub CLI** installed and authenticated
@@ -22,7 +45,7 @@ This repository contains 20 detailed improvement issue templates in the `.github
2245 cd .github/ISSUES
2346 ```
2447
25- ## Method 1: Automated Script (Recommended)
48+ ### Running the Script
2649
2750Run the provided script to create all 20 issues automatically:
2851
@@ -63,7 +86,7 @@ Creating issue from: 01-unit-tests-useFetchStories.md
6386================================================
6487```
6588
66- ## Method 2 : Manual Creation (One at a Time)
89+ ## Method 3 : Manual Creation (One at a Time)
6790
6891If you prefer to create issues individually or selectively:
6992
@@ -106,7 +129,7 @@ gh issue create --title "Implement comprehensive accessibility audit fixes" \
106129 --label " accessibility,a11y,enhancement,bug"
107130```
108131
109- ## Method 3 : Via GitHub Web Interface
132+ ## Method 4 : Via GitHub Web Interface
110133
111134If you can't use GitHub CLI:
112135
0 commit comments