Skip to content

Commit 55b1ff8

Browse files
authored
Merge pull request #1 from 0GiS0/agentic-workflows/install-20260213102908
🤖 Centralize agentic workflows from agentic-repo
2 parents 65c4e28 + 1dd5381 commit 55b1ff8

5 files changed

Lines changed: 115 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

0 commit comments

Comments
 (0)