@vfarcic/dot-ai 0.124.0 → 0.125.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/assets/project-setup/templates/.github/CODEOWNERS.hbs +25 -0
  2. package/assets/project-setup/templates/.github/FUNDING.yml.hbs +35 -0
  3. package/assets/project-setup/templates/.github/ISSUE_TEMPLATE/bug_report.yml.hbs +175 -0
  4. package/assets/project-setup/templates/.github/ISSUE_TEMPLATE/config.yml.hbs +32 -0
  5. package/assets/project-setup/templates/.github/ISSUE_TEMPLATE/feature_request.yml.hbs +134 -0
  6. package/assets/project-setup/templates/.github/PULL_REQUEST_TEMPLATE.md.hbs +172 -0
  7. package/assets/project-setup/templates/.github/labeler.yml.hbs +123 -0
  8. package/assets/project-setup/templates/.github/release.yml.hbs +51 -0
  9. package/assets/project-setup/templates/.github/workflows/labeler.yml.hbs +21 -0
  10. package/assets/project-setup/templates/.github/workflows/scorecard.yml.hbs +71 -0
  11. package/assets/project-setup/templates/.github/workflows/stale.yml.hbs +57 -0
  12. package/dist/core/ai-provider-factory.d.ts.map +1 -1
  13. package/dist/core/ai-provider-factory.js +22 -5
  14. package/dist/core/ai-provider.interface.d.ts +16 -0
  15. package/dist/core/ai-provider.interface.d.ts.map +1 -1
  16. package/dist/core/capability-scan-workflow.d.ts.map +1 -1
  17. package/dist/core/capability-scan-workflow.js +1 -2
  18. package/dist/core/discovery.d.ts +6 -0
  19. package/dist/core/discovery.d.ts.map +1 -1
  20. package/dist/core/discovery.js +35 -0
  21. package/dist/core/embedding-service.d.ts.map +1 -1
  22. package/dist/core/embedding-service.js +9 -2
  23. package/dist/core/model-config.d.ts +2 -0
  24. package/dist/core/model-config.d.ts.map +1 -1
  25. package/dist/core/model-config.js +3 -1
  26. package/dist/core/providers/provider-debug-utils.d.ts +4 -0
  27. package/dist/core/providers/provider-debug-utils.d.ts.map +1 -1
  28. package/dist/core/providers/provider-debug-utils.js +25 -3
  29. package/dist/core/providers/vercel-provider.d.ts +1 -0
  30. package/dist/core/providers/vercel-provider.d.ts.map +1 -1
  31. package/dist/core/providers/vercel-provider.js +35 -6
  32. package/dist/core/unified-creation-session.js +1 -1
  33. package/package.json +3 -1
@@ -0,0 +1,25 @@
1
+ # CODEOWNERS
2
+ #
3
+ # Code owners are automatically requested for review when someone opens a pull request
4
+ # that modifies code that they own. Code owners are not automatically requested to review
5
+ # draft pull requests.
6
+ #
7
+ # See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
8
+
9
+ # Global owners (default for everything in the repository)
10
+ {{#isTrue useTeams}}
11
+ # Using GitHub teams for code ownership
12
+ * @{{githubOrg}}/{{defaultTeam}}
13
+ {{else}}
14
+ # Using individual maintainers for code ownership
15
+ * {{#each maintainerUsernames}}@{{this}} {{/each}}
16
+ {{/isTrue}}
17
+
18
+ # Notes:
19
+ # - Code owners are automatically requested for review when PRs modify their files
20
+ # - You can define path-specific owners by adding lines like:
21
+ # /docs/ @docs-team
22
+ # /.github/ @devops-team
23
+ # /src/core/ @architecture-team
24
+ # - Order matters: later matches take precedence over earlier ones
25
+ # - Use teams (@org/team) for easier maintenance in larger projects
@@ -0,0 +1,35 @@
1
+ # Funding links for this project
2
+ #
3
+ # This file enables the "Sponsor" button in the GitHub repository UI.
4
+ #
5
+ # See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository
6
+
7
+ {{#if githubSponsors}}
8
+ # GitHub Sponsors
9
+ github: {{githubSponsors}}
10
+ {{/if}}
11
+
12
+ {{#if openCollective}}
13
+ # Open Collective
14
+ open_collective: {{openCollective}}
15
+ {{/if}}
16
+
17
+ {{#if patreon}}
18
+ # Patreon
19
+ patreon: {{patreon}}
20
+ {{/if}}
21
+
22
+ {{#if kofi}}
23
+ # Ko-fi
24
+ ko_fi: {{kofi}}
25
+ {{/if}}
26
+
27
+ {{#if tidelift}}
28
+ # Tidelift
29
+ tidelift: {{tidelift}}
30
+ {{/if}}
31
+
32
+ {{#if customFunding}}
33
+ # Custom funding URL
34
+ custom: ["{{customFunding}}"]
35
+ {{/if}}
@@ -0,0 +1,175 @@
1
+ name: Bug Report
2
+ description: Report a bug to help us improve {{projectName}}
3
+ title: "[Bug]: "
4
+ labels: ["bug", "needs-triage"]
5
+ body:
6
+ - type: markdown
7
+ attributes:
8
+ value: |
9
+ Thank you for taking the time to report a bug! Please fill out the form below to help us diagnose and fix the issue.
10
+
11
+ **Before submitting:**
12
+ - Search existing issues to avoid duplicates
13
+ {{#if docsSiteUrl}}
14
+ - Check the [documentation]({{docsSiteUrl}}) for solutions
15
+ {{/if}}
16
+ {{#if supportFilePath}}
17
+ - Review [SUPPORT.md](https://github.com/{{githubOrg}}/{{githubRepo}}/blob/main/{{supportFilePath}}) for help resources
18
+ {{/if}}
19
+
20
+ - type: textarea
21
+ id: description
22
+ attributes:
23
+ label: Bug Description
24
+ description: A clear and concise description of what the bug is.
25
+ placeholder: Describe the bug...
26
+ validations:
27
+ required: true
28
+
29
+ - type: textarea
30
+ id: steps-to-reproduce
31
+ attributes:
32
+ label: Steps to Reproduce
33
+ description: Detailed steps to reproduce the behavior
34
+ placeholder: |
35
+ 1. Go to '...'
36
+ 2. Run command '...'
37
+ 3. See error
38
+ validations:
39
+ required: true
40
+
41
+ - type: textarea
42
+ id: expected-behavior
43
+ attributes:
44
+ label: Expected Behavior
45
+ description: What you expected to happen
46
+ placeholder: Describe what you expected...
47
+ validations:
48
+ required: true
49
+
50
+ - type: textarea
51
+ id: actual-behavior
52
+ attributes:
53
+ label: Actual Behavior
54
+ description: What actually happened
55
+ placeholder: Describe what actually happened...
56
+ validations:
57
+ required: true
58
+
59
+ - type: markdown
60
+ attributes:
61
+ value: "## Environment"
62
+
63
+ - type: input
64
+ id: version
65
+ attributes:
66
+ label: "{{projectName}} Version"
67
+ description: "What version are you running?"
68
+ placeholder: "e.g., v1.2.3 or commit SHA"
69
+ validations:
70
+ required: true
71
+
72
+ - type: input
73
+ id: os
74
+ attributes:
75
+ label: Operating System
76
+ description: "What OS are you using?"
77
+ placeholder: "e.g., Ubuntu 22.04, macOS 13.5, Windows 11"
78
+ validations:
79
+ required: true
80
+ {{#isTrue isNodeProject}}
81
+
82
+ - type: input
83
+ id: node-version
84
+ attributes:
85
+ label: Node.js Version
86
+ description: "Output of `node --version`"
87
+ placeholder: "e.g., v18.17.0"
88
+ validations:
89
+ required: true
90
+
91
+ - type: input
92
+ id: npm-version
93
+ attributes:
94
+ label: npm/yarn Version
95
+ description: "Output of `npm --version` or `yarn --version`"
96
+ placeholder: "e.g., 9.6.7"
97
+ {{/isTrue}}
98
+ {{#isTrue isPythonProject}}
99
+
100
+ - type: input
101
+ id: python-version
102
+ attributes:
103
+ label: Python Version
104
+ description: "Output of `python --version`"
105
+ placeholder: "e.g., 3.11.4"
106
+ validations:
107
+ required: true
108
+
109
+ - type: input
110
+ id: pip-version
111
+ attributes:
112
+ label: pip Version
113
+ description: "Output of `pip --version`"
114
+ placeholder: "e.g., 23.1.2"
115
+ {{/isTrue}}
116
+ {{#isTrue isGoProject}}
117
+
118
+ - type: input
119
+ id: go-version
120
+ attributes:
121
+ label: Go Version
122
+ description: "Output of `go version`"
123
+ placeholder: "e.g., go1.21.0"
124
+ validations:
125
+ required: true
126
+ {{/isTrue}}
127
+ {{#isTrue isKubernetesProject}}
128
+
129
+ - type: input
130
+ id: kubernetes-version
131
+ attributes:
132
+ label: Kubernetes Version
133
+ description: "Output of `kubectl version --short`"
134
+ placeholder: "e.g., v1.27.3"
135
+ validations:
136
+ required: true
137
+
138
+ - type: input
139
+ id: cloud-provider
140
+ attributes:
141
+ label: Cloud Provider / Platform
142
+ description: "Where is Kubernetes running?"
143
+ placeholder: "e.g., AWS EKS, Google GKE, Azure AKS, self-hosted, minikube, kind"
144
+ {{/isTrue}}
145
+
146
+ - type: textarea
147
+ id: logs
148
+ attributes:
149
+ label: Relevant Logs
150
+ description: "Paste any relevant log output here"
151
+ placeholder: |
152
+ Paste logs here...
153
+ render: shell
154
+ validations:
155
+ required: false
156
+
157
+ - type: textarea
158
+ id: additional-context
159
+ attributes:
160
+ label: Additional Context
161
+ description: "Add any other context about the problem here (screenshots, configuration files, etc.)"
162
+ placeholder: |
163
+ Any additional information...
164
+ validations:
165
+ required: false
166
+
167
+ - type: checkboxes
168
+ id: checklist
169
+ attributes:
170
+ label: Checklist
171
+ options:
172
+ - label: I have searched existing issues to ensure this bug hasn't been reported before
173
+ required: true
174
+ - label: I have included all relevant information above
175
+ required: true
@@ -0,0 +1,32 @@
1
+ blank_issues_enabled: {{blankIssuesEnabled}}
2
+ contact_links:
3
+ {{#isTrue hasDiscussions}}
4
+ - name: 💬 GitHub Discussions
5
+ url: https://github.com/{{githubOrg}}/{{githubRepo}}/discussions
6
+ about: Ask questions, share ideas, and discuss with the community
7
+ {{/isTrue}}
8
+ {{#if docsSiteUrl}}
9
+ - name: 📚 Documentation
10
+ url: {{docsSiteUrl}}
11
+ about: Read the documentation before reporting issues
12
+ {{/if}}
13
+ {{#if supportFilePath}}
14
+ - name: ❓ Support Resources
15
+ url: https://github.com/{{githubOrg}}/{{githubRepo}}/blob/main/{{supportFilePath}}
16
+ about: Learn how to get help and where to ask questions
17
+ {{/if}}
18
+ {{#if slackInviteUrl}}
19
+ - name: 💙 Slack Community
20
+ url: {{slackInviteUrl}}
21
+ about: Join our Slack workspace for real-time support and discussions
22
+ {{/if}}
23
+ {{#if discordInviteUrl}}
24
+ - name: 🎮 Discord Server
25
+ url: {{discordInviteUrl}}
26
+ about: Join our Discord community for support and discussions
27
+ {{/if}}
28
+ {{#if securityFilePath}}
29
+ - name: 🔒 Security Vulnerabilities
30
+ url: https://github.com/{{githubOrg}}/{{githubRepo}}/blob/main/{{securityFilePath}}
31
+ about: Report security vulnerabilities privately following our security policy
32
+ {{/if}}
@@ -0,0 +1,134 @@
1
+ name: Feature Request
2
+ description: Suggest a new feature or enhancement for {{projectName}}
3
+ title: "[Feature]: "
4
+ labels: ["enhancement", "needs-triage"]
5
+ body:
6
+ - type: markdown
7
+ attributes:
8
+ value: |
9
+ Thank you for suggesting a new feature! Please describe the problem you're trying to solve and your proposed solution.
10
+
11
+ **Before submitting:**
12
+ - Search existing issues and feature requests to avoid duplicates
13
+ {{#if roadmapPath}}
14
+ - Review the [project roadmap](https://github.com/{{githubOrg}}/{{githubRepo}}/blob/main/{{roadmapPath}}) to see if this is already planned
15
+ {{/if}}
16
+ {{#isTrue hasDiscussions}}
17
+ - Consider starting a [discussion](https://github.com/{{githubOrg}}/{{githubRepo}}/discussions) first to gather feedback
18
+ {{/isTrue}}
19
+
20
+ **Note:** "Nice to have" is not a strong use case. Please explain the specific problem this feature would solve.
21
+
22
+ - type: textarea
23
+ id: problem-statement
24
+ attributes:
25
+ label: Problem Statement
26
+ description: What problem are you trying to solve? Why is it important?
27
+ placeholder: |
28
+ Describe the problem you're experiencing or the gap you've identified.
29
+ Focus on the problem, not the solution.
30
+ validations:
31
+ required: true
32
+
33
+ - type: checkboxes
34
+ id: who-is-affected
35
+ attributes:
36
+ label: Who is affected by this problem?
37
+ description: Help us understand the impact and audience
38
+ options:
39
+ - label: End users
40
+ - label: Developers/contributors
41
+ - label: Platform engineers/operators
42
+ - label: Documentation users
43
+ - label: Other (please describe below)
44
+
45
+ - type: textarea
46
+ id: proposed-solution
47
+ attributes:
48
+ label: Proposed Solution
49
+ description: Describe the solution you'd like to see
50
+ placeholder: |
51
+ How would this feature work? What would the user experience be?
52
+ Be as specific as possible.
53
+ validations:
54
+ required: true
55
+
56
+ - type: textarea
57
+ id: alternatives
58
+ attributes:
59
+ label: Alternatives Considered
60
+ description: What other approaches have you considered or tried?
61
+ placeholder: |
62
+ - Current workarounds you're using
63
+ - Other tools or features that solve similar problems
64
+ - Why those alternatives don't fully address the need
65
+ validations:
66
+ required: false
67
+
68
+ - type: textarea
69
+ id: use-cases
70
+ attributes:
71
+ label: Use Cases
72
+ description: Describe 1-3 specific scenarios where this feature would be valuable
73
+ placeholder: |
74
+ **Use Case 1:** [Describe a specific scenario]
75
+ **Use Case 2:** [Describe another scenario]
76
+ value: |
77
+ **Use Case 1:**
78
+
79
+ **Use Case 2:**
80
+ validations:
81
+ required: true
82
+
83
+ - type: textarea
84
+ id: additional-context
85
+ attributes:
86
+ label: Additional Context
87
+ description: Add any other context, screenshots, mockups, or examples
88
+ placeholder: |
89
+ - Links to relevant documentation
90
+ - Screenshots or mockups
91
+ - Examples from other projects
92
+ - Performance or scalability considerations
93
+ validations:
94
+ required: false
95
+
96
+ - type: dropdown
97
+ id: priority
98
+ attributes:
99
+ label: Priority
100
+ description: How important is this feature to you?
101
+ options:
102
+ - "Nice to have"
103
+ - "Important (workarounds exist but are painful)"
104
+ - "Critical (blocking my use of {{projectName}})"
105
+ validations:
106
+ required: true
107
+
108
+ - type: dropdown
109
+ id: contribution
110
+ attributes:
111
+ label: Are you willing to contribute this feature?
112
+ description: Would you be interested in implementing this feature with guidance from maintainers?
113
+ options:
114
+ - "Yes, I'd like to implement this"
115
+ - "Yes, with help from maintainers"
116
+ - "Maybe, depending on complexity"
117
+ - "No, but I can help test it"
118
+ - "No, I'm just suggesting it"
119
+ validations:
120
+ required: false
121
+
122
+ - type: checkboxes
123
+ id: checklist
124
+ attributes:
125
+ label: Checklist
126
+ options:
127
+ - label: I have searched existing issues and feature requests
128
+ required: true
129
+ - label: I have described the problem, not just the solution
130
+ required: true
131
+ {{#if roadmapPath}}
132
+ - label: I have reviewed the project roadmap ({{roadmapPath}})
133
+ required: false
134
+ {{/if}}
@@ -0,0 +1,172 @@
1
+ <!--
2
+ Thank you for contributing to {{projectName}}! Please fill out this template to help us review your changes.
3
+ -->
4
+
5
+ ## Description
6
+ <!-- Provide a clear and concise description of your changes -->
7
+
8
+ **What does this PR do?**
9
+
10
+ **Why is this change needed?**
11
+
12
+ ## Related Issues
13
+ <!-- Link to related issues using keywords for automatic closure -->
14
+ <!-- Examples: "Closes #123", "Fixes #456", "Resolves #789" -->
15
+
16
+ - Related to: #
17
+
18
+ ## Type of Change
19
+ <!-- Check all that apply -->
20
+
21
+ - [ ] 🐛 Bug fix (non-breaking change that fixes an issue)
22
+ - [ ] ✨ New feature (non-breaking change that adds functionality)
23
+ - [ ] 💥 Breaking change (fix or feature that would cause existing functionality to change)
24
+ - [ ] 📚 Documentation update
25
+ - [ ] ♻️ Refactoring (no functional changes)
26
+ - [ ] ✅ Test updates (adding or updating tests)
27
+ - [ ] 🔧 Configuration changes
28
+ - [ ] 🚀 Performance improvements
29
+ - [ ] 🎨 Style changes (formatting, naming, etc.)
30
+ - [ ] 📦 Dependency updates
31
+ - [ ] 🔨 CI/CD changes
32
+
33
+ {{#isTrue requiresConventionalCommits}}
34
+ ## Conventional Commit Format
35
+ <!-- This project uses Conventional Commits for automated changelog generation -->
36
+
37
+ **Your PR title should follow this format:**
38
+ ```
39
+ <type>(<scope>): <description>
40
+
41
+ Examples:
42
+ feat(auth): add OAuth2 authentication support
43
+ fix(api): resolve null pointer exception in user service
44
+ docs(readme): update installation instructions
45
+ chore(deps): bump typescript from 5.0.0 to 5.1.0
46
+ ```
47
+
48
+ **Common types:**
49
+ - `feat:` - New feature (minor version bump)
50
+ - `fix:` - Bug fix (patch version bump)
51
+ - `docs:` - Documentation changes
52
+ - `refactor:` - Code refactoring (no functional changes)
53
+ - `test:` - Adding/updating tests
54
+ - `chore:` - Maintenance tasks (dependencies, build, CI/CD)
55
+ - `perf:` - Performance improvements
56
+
57
+ **Breaking changes:**
58
+ ```
59
+ feat(api)!: remove deprecated v1 endpoints
60
+
61
+ BREAKING CHANGE: v1 API endpoints have been removed.
62
+ See MIGRATION.md for upgrade guide.
63
+ ```
64
+
65
+ {{/isTrue}}
66
+ ## Testing Checklist
67
+ <!-- Ensure all relevant tests have been completed -->
68
+
69
+ - [ ] Tests added or updated
70
+ - [ ] All existing tests pass locally
71
+ - [ ] Manual testing performed
72
+ - [ ] Test coverage maintained or improved
73
+
74
+ **Test commands run:**
75
+ ```bash
76
+ # Commands you ran locally to verify your changes
77
+ # (Automated CI tests will run automatically on PR submission)
78
+ ```
79
+
80
+ **Test results:**
81
+ <!-- Describe test results, including any relevant output or screenshots -->
82
+
83
+ ## Documentation Checklist
84
+ <!-- Ensure documentation is updated to reflect your changes -->
85
+
86
+ - [ ] README.md updated (if user-facing changes)
87
+ - [ ] Documentation updated (if applicable)
88
+ - [ ] Code comments added for complex logic
89
+ - [ ] API documentation updated (if API changes)
90
+ {{#if contributingPath}}
91
+ - [ ] [CONTRIBUTING.md]({{contributingPath}}) guidelines followed
92
+ {{/if}}
93
+
94
+ {{#isTrue includesSecurityChecklist}}
95
+ ## Security Checklist
96
+ <!-- Complete if your changes affect security -->
97
+
98
+ - [ ] No secrets or credentials committed
99
+ - [ ] Input validation implemented where needed
100
+ - [ ] Security implications considered and documented
101
+ - [ ] Dependencies scanned for vulnerabilities
102
+ - [ ] Authentication/authorization logic reviewed
103
+ - [ ] Error messages don't leak sensitive information
104
+
105
+ {{/isTrue}}
106
+ {{#isTrue requiresScreenshots}}
107
+ ## Screenshots / Recordings
108
+ <!-- For UI changes, provide before/after screenshots or recordings -->
109
+
110
+ **Before:**
111
+ <!-- Add screenshots or recordings showing the current behavior -->
112
+
113
+ **After:**
114
+ <!-- Add screenshots or recordings showing your changes -->
115
+
116
+ {{/isTrue}}
117
+ ## Breaking Changes
118
+ <!-- If this is a breaking change, describe the impact and provide migration guidance -->
119
+
120
+ **Does this PR introduce breaking changes?**
121
+ - [ ] Yes
122
+ - [ ] No
123
+
124
+ **If yes, describe the breaking changes and migration path:**
125
+
126
+ {{#isTrue requiresDco}}
127
+ ## Developer Certificate of Origin
128
+ <!-- This project requires DCO sign-off for all commits -->
129
+
130
+ By submitting this pull request, I certify that:
131
+
132
+ - The contribution was created in whole or in part by me and I have the right to submit it under the project's open source license.
133
+ - I understand and agree that this project and my contribution are public and that a record of the contribution (including all personal information I submit with it) is maintained indefinitely.
134
+
135
+ **DCO Sign-off:**
136
+ All commits must include a `Signed-off-by` line:
137
+ ```bash
138
+ git commit -s -m "Your commit message"
139
+ ```
140
+
141
+ If you forgot to sign off your commits, you can amend them:
142
+ ```bash
143
+ git commit --amend --signoff
144
+ git push --force-with-lease
145
+ ```
146
+
147
+ {{/isTrue}}
148
+ ## Checklist
149
+ <!-- Final pre-submission checklist -->
150
+
151
+ - [ ] My code follows the project's code style guidelines
152
+ - [ ] I have performed a self-review of my code
153
+ - [ ] I have commented my code, particularly in hard-to-understand areas
154
+ - [ ] My changes generate no new warnings or errors
155
+ - [ ] I have added tests that prove my fix is effective or my feature works
156
+ - [ ] New and existing tests pass locally with my changes
157
+ - [ ] Any dependent changes have been merged and published
158
+ {{#isTrue requiresDco}}
159
+ - [ ] All commits are signed off (DCO)
160
+ {{/isTrue}}
161
+ {{#isTrue requiresConventionalCommits}}
162
+ - [ ] PR title follows Conventional Commits format
163
+ {{/isTrue}}
164
+
165
+ ## Additional Context
166
+ <!-- Add any other context, considerations, or notes for reviewers -->
167
+
168
+ **Reviewer Notes:**
169
+ <!-- Anything specific you want reviewers to focus on? -->
170
+
171
+ **Follow-up Work:**
172
+ <!-- Any planned follow-up PRs or related work? -->
@@ -0,0 +1,123 @@
1
+ # This configuration automatically labels pull requests based on file paths.
2
+ # Learn more: https://github.com/actions/labeler
3
+
4
+ # Documentation changes
5
+ documentation:
6
+ - changed-files:
7
+ - any-glob-to-any-file:
8
+ - 'docs/**/*'
9
+ - '*.md'
10
+ - 'README*'
11
+
12
+ {{#if sourceDirectory}}
13
+ # Source code changes
14
+ source:
15
+ - changed-files:
16
+ - any-glob-to-any-file:
17
+ - '{{sourceDirectory}}/**/*'
18
+
19
+ {{/if}}
20
+ {{#if testDirectory}}
21
+ # Test changes
22
+ tests:
23
+ - changed-files:
24
+ - any-glob-to-any-file:
25
+ - '{{testDirectory}}/**/*'
26
+ - '**/*.test.*'
27
+ - '**/*.spec.*'
28
+
29
+ {{/if}}
30
+ # CI/CD changes
31
+ ci-cd:
32
+ - changed-files:
33
+ - any-glob-to-any-file:
34
+ - '.github/workflows/**/*'
35
+ - '.github/actions/**/*'
36
+ - 'Dockerfile*'
37
+ - 'docker-compose*.yml'
38
+
39
+ # Infrastructure changes
40
+ infrastructure:
41
+ - changed-files:
42
+ - any-glob-to-any-file:
43
+ {{#if infrastructureDirectory}}
44
+ - '{{infrastructureDirectory}}/**/*'
45
+ {{/if}}
46
+ # Terraform
47
+ - '*.tf'
48
+ - 'terraform/**/*'
49
+ - 'tf/**/*'
50
+ # Kubernetes
51
+ - 'k8s/**/*'
52
+ - 'kubernetes/**/*'
53
+ - 'manifests/**/*'
54
+ # Helm
55
+ - 'helm/**/*'
56
+ - 'Chart.yaml'
57
+ - 'values.yaml'
58
+ # Ansible
59
+ - 'ansible/**/*'
60
+ - '*.ansible.yml'
61
+ - 'playbook*.yml'
62
+ # CloudFormation
63
+ - '*.template'
64
+ - '*.cfn.yml'
65
+ - 'cloudformation/**/*'
66
+ # Crossplane
67
+ - 'crossplane/**/*'
68
+ # Pulumi
69
+ - 'Pulumi*.yaml'
70
+ - 'pulumi/**/*'
71
+
72
+ # Dependencies
73
+ dependencies:
74
+ - changed-files:
75
+ - any-glob-to-any-file:
76
+ # JavaScript/Node.js
77
+ - 'package.json'
78
+ - 'package-lock.json'
79
+ - 'yarn.lock'
80
+ - 'pnpm-lock.yaml'
81
+ # Python
82
+ - 'requirements.txt'
83
+ - 'Pipfile*'
84
+ - 'poetry.lock'
85
+ - 'pyproject.toml'
86
+ # Go
87
+ - 'go.mod'
88
+ - 'go.sum'
89
+ # Rust
90
+ - 'Cargo.toml'
91
+ - 'Cargo.lock'
92
+ # Java
93
+ - 'pom.xml'
94
+ - 'build.gradle*'
95
+ - 'settings.gradle*'
96
+ # Ruby
97
+ - 'Gemfile'
98
+ - 'Gemfile.lock'
99
+ # PHP
100
+ - 'composer.json'
101
+ - 'composer.lock'
102
+ # .NET
103
+ - '*.csproj'
104
+ - '*.fsproj'
105
+ - '*.vbproj'
106
+ - 'packages.config'
107
+ # Swift
108
+ - 'Package.swift'
109
+ - 'Package.resolved'
110
+ # Elixir
111
+ - 'mix.exs'
112
+ - 'mix.lock'
113
+
114
+ # Configuration changes
115
+ config:
116
+ - changed-files:
117
+ - any-glob-to-any-file:
118
+ - '*.config.*'
119
+ - '*.json'
120
+ - '*.yaml'
121
+ - '*.yml'
122
+ - '*.toml'
123
+ - '.env*'