diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 2 | ||||
| -rw-r--r-- | .github/pull_request_template.md | 2 | ||||
| -rwxr-xr-x | .github/scripts/pr-triage.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 12bf4663..9f78e2fe 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -29,7 +29,7 @@ body: id: info attributes: label: Client information - description: Please paste the full text from the `/about` command run from Gemini CLI. Also include which platform (MacOS, Windows, Linux). + description: Please paste the full text from the `/about` command run from Gemini CLI. Also include which platform (macOS, Windows, Linux). value: | <details> diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 560eec25..773e4cc8 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -4,7 +4,7 @@ ## Dive Deeper -<!-- more thoughts and in depth discussion here --> +<!-- more thoughts and in-depth discussion here --> ## Reviewer Test Plan diff --git a/.github/scripts/pr-triage.sh b/.github/scripts/pr-triage.sh index be86e393..6b60432b 100755 --- a/.github/scripts/pr-triage.sh +++ b/.github/scripts/pr-triage.sh @@ -24,7 +24,7 @@ process_pr() { ISSUE_NUMBER=$(echo "$PR_BODY" | grep -oE '#[0-9]+' | head -1 | sed 's/#//' 2>/dev/null || echo "") fi - # Pattern 2: Closes/Fixes/Resolves patterns (case insensitive) + # Pattern 2: Closes/Fixes/Resolves patterns (case-insensitive) if [ -z "$ISSUE_NUMBER" ]; then ISSUE_NUMBER=$(echo "$PR_BODY" | grep -iE '(closes?|fixes?|resolves?) #[0-9]+' | grep -oE '#[0-9]+' | head -1 | sed 's/#//' 2>/dev/null || echo "") fi |
