Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
cf3c493
Bump version to 0.2.0 for minor release development
briandominick Jul 14, 2025
d7bdc1b
Ignore local AI scratch path
briandominick Jul 14, 2025
39935df
Clean up .gitignore
briandominick Jul 15, 2025
f88ca11
fix: correct examples link path in README
briandominick Jul 15, 2025
819c449
chore: update Gemfile.lock for version 0.2.0
briandominick Jul 15, 2025
b445ab5
Merge pull request #12 from DocOps/fix/readme-examples-link
briandominick Jul 15, 2025
d3591b7
Release/0.1.1 (#2)
briandominick Jul 14, 2025
8702e69
infra: enable CI tests for all pull requests
briandominick Jul 15, 2025
439dceb
Merge pull request #14 from DocOps/feature/enable-ci-for-all-prs
briandominick Jul 15, 2025
4e3745f
Add GitHub issue types support with GraphQL integration (#20)
briandominick Jul 16, 2025
cf5a95f
fix: 'JIRA'->'Jira' references (#23)
briandominick Jul 16, 2025
298fd79
Add capability to override default tags on a per-issue basis (#24)
briandominick Jul 16, 2025
a88dbb3
Fix long-line wrapping in dry-run output with maintained indentation …
briandominick Jul 17, 2025
b4c8eb4
Docs/issues README review and GemDocs links (#30)
briandominick Jul 17, 2025
8195879
Remove -v and --tokenv from CLI help (#31)
briandominick Jul 17, 2025
98684d7
Merge branch 'main' into release/0.2.0
briandominick Jul 17, 2025
e4a9427
Remove parentheses around method def args
briandominick Jul 17, 2025
4583424
Updated examples to include types
briandominick Jul 19, 2025
8aa1be0
Add ReleaseHx functionality for generating release notes/changelog
briandominick Aug 6, 2025
d8bfc40
Miscellaneous docs changes.
briandominick Aug 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
# Run tests on ALL pull requests, regardless of target branch
release:
types: [ published ]

Expand Down
18 changes: 10 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@
/lib/bundler/man/

# RSpec
/spec/reports/
/spec/examples.txt
.rspec_status

# Test coverage
/coverage/

# Environment variables
# Environment variable files
.env
.env.local
.env.*.local
Expand Down Expand Up @@ -75,8 +73,8 @@ comprehensive-test.yml
/scratch/

# AI-related files
repomix-output.yml
repomix-output.xml
/.warp

# Test files
test-*.yml
Expand All @@ -88,16 +86,20 @@ specs/tests/github-api/config.yml
specs/tests/github-api/*.yml.bak
cleanup_commands_*.sh

# Run logs and cache (now stored in ~/.config/issuer/)
# .issuer/ - removed as logs are now user-wide
# Ephemeral specification matter
specs/data/*-issues.yml

# Outdated test directories (but not specs/tests)
/tests/
/spec/

# Temporary documentation
TESTING-PLAN.md
# Vale downloaded packages (but keep project vocabularies)
.vale/styles/

# Local scratch space for AI output
.warp/

# Docs and ReleaseHx files
docs/releasehx/*.md
docs/releasehx/*.adoc
releasehx-install.sh
6 changes: 3 additions & 3 deletions .vale.ini
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ write-good.Passive = NO
write-good.TooWordy = NO
write-good.Weasel = NO
# Global ignores for all markup files
TokenIgnores = (\$[A-Z_]+), (`[^`]+`), (:[a-z-]+:), (\{[^}]+\}), (https?://[^\s]+), \bJIRA\b
TokenIgnores = (\$[A-Z_]+), (`[^`]+`), (:[a-z-]+:), (\{[^}]+\}), (https?://[^\s]+)

# Ruby files for comments
[*.rb]
BasedOnStyles = Microsoft, write-good
TokenIgnores = (`[^`]+`), (\$[A-Z_]+), (:[a-z_]+), \bJIRA\b
TokenIgnores = (`[^`]+`), (\$[A-Z_]+), (:[a-z_]+)

# YAML files
[*.{yml,yaml}]
BasedOnStyles = Microsoft, write-good
TokenIgnores = (`[^`]+`), (\$[A-Z_]+), (:[a-z_]+:), \bJIRA\b
TokenIgnores = (`[^`]+`), (\$[A-Z_]+), (:[a-z_]+:)
2 changes: 1 addition & 1 deletion .vale/config/vocabularies/issuer/accept.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ DocOps
docopslab

# Proper nouns
JIRA
Jira
OAuth
README
roadmap
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
issuer (0.1.1)
issuer (0.2.0)
faraday-retry (~> 2.0)
octokit (~> 8.0)
thor (~> 1.0)
Expand Down
Loading