File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : 📚 Continuous Documentation
2+
3+ on :
4+ pull_request :
5+ types : [opened, synchronize]
6+ paths :
7+ - " **/*.js"
8+ - " **/*.ts"
9+ - " **/*.py"
10+ - " **/*.go"
11+ - " **/*.java"
12+ - " **/*.cs"
13+ - " **/*.rb"
14+ - " **/*.rs"
15+ - " **/*.php"
16+ - " **/*.swift"
17+ - " **/*.kt"
18+ - " **/*.sh"
19+ - " **/*.yml"
20+ - " **/*.yaml"
21+ - " **/*.json"
22+
23+ jobs :
24+ docs :
25+ uses : 0GiS0/agentic-repo/.github/workflows/continuous-docs.yml@main
26+ with :
27+ pr_number : ${{ github.event.pull_request.number }}
28+ pr_title : ${{ github.event.pull_request.title }}
29+ pr_author : ${{ github.event.pull_request.user.login }}
30+ base_ref : ${{ github.event.pull_request.base.ref }}
31+ head_ref : ${{ github.event.pull_request.head.ref }}
32+ secrets : inherit
Original file line number Diff line number Diff line change 1+ name : ✍️ Issue Quality Enhancer
2+
3+ on :
4+ issues :
5+ types : [opened]
6+
7+ jobs :
8+ enhance :
9+ uses : 0GiS0/agentic-repo/.github/workflows/issue-quality-enhancer.yml@main
10+ with :
11+ issue_number : ${{ github.event.issue.number }}
12+ issue_title : ${{ github.event.issue.title }}
13+ issue_body : ${{ github.event.issue.body }}
14+ issue_author : ${{ github.event.issue.user.login }}
15+ secrets : inherit
Original file line number Diff line number Diff line change 1+ name : 🏷️✨ Label Beautifier
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ dry_run :
7+ description : ' Dry run mode (only show changes, do not apply them)'
8+ required : true
9+ default : ' false'
10+ type : choice
11+ options :
12+ - ' false'
13+ - ' true'
14+
15+ jobs :
16+ beautify :
17+ uses : 0GiS0/agentic-repo/.github/workflows/label-beautifier.yml@main
18+ with :
19+ dry_run : ${{ inputs.dry_run }}
20+ secrets : inherit
Original file line number Diff line number Diff line change 1+ name : 🏷️ Smart Issue & PR Labeler
2+
3+ on :
4+ issues :
5+ types : [opened, edited]
6+ pull_request :
7+ types : [opened, edited]
8+
9+ jobs :
10+ label :
11+ uses : 0GiS0/agentic-repo/.github/workflows/smart-labeler.yml@main
12+ with :
13+ item_type : ${{ github.event_name == 'issues' && 'issue' || 'pull_request' }}
14+ item_number : ${{ github.event.issue.number || github.event.pull_request.number }}
15+ item_title : ${{ github.event.issue.title || github.event.pull_request.title }}
16+ item_body : ${{ github.event.issue.body || github.event.pull_request.body }}
17+ secrets : inherit
Original file line number Diff line number Diff line change 1+ name : 💡 Copilot Suggester (Discussion Mode)
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ suggestion_type :
7+ description : ' Type of suggestions to look for'
8+ required : true
9+ default : ' all'
10+ type : choice
11+ options :
12+ - all
13+ - security
14+ - performance
15+ - refactoring
16+ - testing
17+ - documentation
18+ - architecture
19+ - configuration
20+ - bugs
21+ - maintainability
22+ - ux-design
23+ - favicon
24+ - readme
25+
26+ jobs :
27+ suggest :
28+ uses : 0GiS0/agentic-repo/.github/workflows/the-suggester-discussion-mode.yml@main
29+ with :
30+ suggestion_type : ${{ inputs.suggestion_type }}
31+ secrets : inherit
You can’t perform that action at this time.
0 commit comments