Skip to content

Commit 338b60b

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/octokit-5.0.3
2 parents 2564c31 + a34ef17 commit 338b60b

3 files changed

Lines changed: 98 additions & 3 deletions

File tree

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 📚 Documentation
4+
url: https://github.com/devops-actions/github-copilot-premium-reqs-usage/blob/main/README.md
5+
about: Check the project documentation
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
name: ✨ Feature Request (Coding Agent)
2+
description: Suggest a new feature for the Coding Agent to implement
3+
title: "[Feature]: "
4+
labels: ["enhancement", "coding-agent"]
5+
assignees:
6+
- copilot
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for suggesting a new feature! This will be automatically assigned to the Coding Agent (@copilot) for implementation.
12+
13+
- type: textarea
14+
id: feature-description
15+
attributes:
16+
label: Feature Description
17+
description: A clear and concise description of the feature you'd like to see
18+
placeholder: Describe the feature...
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: problem-solution
24+
attributes:
25+
label: Problem and Solution
26+
description: What problem does this feature solve? How should it work?
27+
placeholder: |
28+
**Problem**: What issue are you trying to solve?
29+
**Solution**: How should this feature work?
30+
validations:
31+
required: true
32+
33+
- type: textarea
34+
id: use-case
35+
attributes:
36+
label: Use Case
37+
description: Describe how you or others would use this feature
38+
placeholder: Describe the use case...
39+
validations:
40+
required: true
41+
42+
- type: textarea
43+
id: alternatives
44+
attributes:
45+
label: Alternatives Considered
46+
description: Have you considered any alternative solutions or features?
47+
placeholder: What alternatives have you considered?
48+
validations:
49+
required: false
50+
51+
- type: textarea
52+
id: mockups
53+
attributes:
54+
label: Mockups/Examples
55+
description: Add any mockups, wireframes, or examples that illustrate the feature
56+
placeholder: Drag and drop or paste images here...
57+
validations:
58+
required: false
59+
60+
- type: dropdown
61+
id: complexity
62+
attributes:
63+
label: Expected Complexity
64+
description: How complex do you think this feature might be to implement?
65+
options:
66+
- Simple
67+
- Medium
68+
- Complex
69+
- Very Complex
70+
- Not sure
71+
default: 4
72+
validations:
73+
required: true
74+
75+
- type: textarea
76+
id: additional-context
77+
attributes:
78+
label: Additional Context
79+
description: Add any other context or information about the feature request
80+
placeholder: Any additional information...
81+
validations:
82+
required: false

.github/workflows/deploy-to-pages.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
name: Deploy to GitHub Pages
22

33
on:
4-
# Runs on pushes to any branch to validate build
4+
# Runs on pushes to any branch to validate build (only when code changes)
55
push:
6+
paths-ignore:
7+
- '**.md'
8+
- 'LICENSE'
9+
- 'SECURITY.md'
610

7-
# Runs on pull requests to validate build
11+
# Runs on pull requests to validate build (only when code changes)
812
pull_request:
13+
paths-ignore:
14+
- '**.md'
15+
- 'LICENSE'
16+
- 'SECURITY.md'
917

1018
# Allows you to run this workflow manually from the Actions tab
1119
workflow_dispatch:
@@ -61,4 +69,4 @@ jobs:
6169
steps:
6270
- name: Deploy to GitHub Pages
6371
id: deployment
64-
uses: actions/deploy-pages@v4
72+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)