Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
32 changes: 32 additions & 0 deletions .github/workflows/continuous-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: πŸ“š Continuous Documentation

on:
pull_request:
types: [opened, synchronize]
paths:
- "**/*.js"
- "**/*.ts"
- "**/*.py"
- "**/*.go"
- "**/*.java"
- "**/*.cs"
- "**/*.rb"
- "**/*.rs"
- "**/*.php"
- "**/*.swift"
- "**/*.kt"
- "**/*.sh"
- "**/*.yml"
- "**/*.yaml"
- "**/*.json"

jobs:
docs:
uses: 0GiS0/agentic-repo/.github/workflows/continuous-docs.yml@main
with:
pr_number: ${{ github.event.pull_request.number }}
pr_title: ${{ github.event.pull_request.title }}
pr_author: ${{ github.event.pull_request.user.login }}
base_ref: ${{ github.event.pull_request.base.ref }}
head_ref: ${{ github.event.pull_request.head.ref }}
secrets: inherit
15 changes: 15 additions & 0 deletions .github/workflows/issue-quality-enhancer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: ✍️ Issue Quality Enhancer

on:
issues:
types: [opened]

jobs:
enhance:
uses: 0GiS0/agentic-repo/.github/workflows/issue-quality-enhancer.yml@main
with:
issue_number: ${{ github.event.issue.number }}
issue_title: ${{ github.event.issue.title }}
issue_body: ${{ github.event.issue.body }}
issue_author: ${{ github.event.issue.user.login }}
secrets: inherit
20 changes: 20 additions & 0 deletions .github/workflows/label-beautifier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 🏷️✨ Label Beautifier

on:
workflow_dispatch:
inputs:
dry_run:
description: 'Dry run mode (only show changes, do not apply them)'
required: true
default: 'false'
type: choice
options:
- 'false'
- 'true'

jobs:
beautify:
uses: 0GiS0/agentic-repo/.github/workflows/label-beautifier.yml@main
with:
dry_run: ${{ inputs.dry_run }}
secrets: inherit
17 changes: 17 additions & 0 deletions .github/workflows/smart-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 🏷️ Smart Issue & PR Labeler

on:
issues:
types: [opened, edited]
pull_request:
types: [opened, edited]

jobs:
label:
uses: 0GiS0/agentic-repo/.github/workflows/smart-labeler.yml@main
with:
item_type: ${{ github.event_name == 'issues' && 'issue' || 'pull_request' }}
item_number: ${{ github.event.issue.number || github.event.pull_request.number }}
item_title: ${{ github.event.issue.title || github.event.pull_request.title }}
item_body: ${{ github.event.issue.body || github.event.pull_request.body }}
secrets: inherit
31 changes: 31 additions & 0 deletions .github/workflows/the-suggester-discussion-mode.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: πŸ’‘ Copilot Suggester (Discussion Mode)

on:
workflow_dispatch:
inputs:
suggestion_type:
description: 'Type of suggestions to look for'
required: true
default: 'all'
type: choice
options:
- all
- security
- performance
- refactoring
- testing
- documentation
- architecture
- configuration
- bugs
- maintainability
- ux-design
- favicon
- readme

jobs:
suggest:
uses: 0GiS0/agentic-repo/.github/workflows/the-suggester-discussion-mode.yml@main
with:
suggestion_type: ${{ inputs.suggestion_type }}
secrets: inherit
Loading