Skip to content

Commit 1e76ace

Browse files
Merge branch 'dependabotchanges' into dependabot/pip/ClientAdvisor/App/gunicorn-22.0.0
2 parents f8c92d5 + 71cf9c3 commit 1e76ace

File tree

159 files changed

+23658
-6751
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+23658
-6751
lines changed

.github/CODEOWNERS

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Lines starting with '#' are comments.
2+
# Each line is a file pattern followed by one or more owners.
3+
4+
# These owners will be the default owners for everything in the repo.
5+
* @Avijit-Microsoft @Roopan-Microsoft @Prajwal-Microsoft
6+
7+
# Specific directory ownership
8+
/ClientAdvisor/ @Avijit-Microsoft @Roopan-Microsoft @Prajwal-Microsoft
9+
10+
/ResearchAssistant/ @Avijit-Microsoft @Roopan-Microsoft @Prajwal-Microsoft
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
# Describe the bug
11+
A clear and concise description of what the bug is.
12+
13+
# Expected behavior
14+
A clear and concise description of what you expected to happen.
15+
16+
# How does this bug make you feel?
17+
_Share a gif from [giphy](https://giphy.com/) to tells us how you'd feel_
18+
19+
---
20+
21+
# Debugging information
22+
23+
## Steps to reproduce
24+
Steps to reproduce the behavior:
25+
1. Go to '...'
26+
2. Click on '....'
27+
3. Scroll down to '....'
28+
4. See error
29+
30+
## Screenshots
31+
If applicable, add screenshots to help explain your problem.
32+
33+
## Logs
34+
35+
If applicable, add logs to help the engineer debug the problem.
36+
37+
---
38+
39+
# Tasks
40+
41+
_To be filled in by the engineer picking up the issue_
42+
43+
- [ ] Task 1
44+
- [ ] Task 2
45+
- [ ] ...
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
# Motivation
11+
12+
A clear and concise description of why this feature would be useful and the value it would bring.
13+
Explain any alternatives considered and why they are not sufficient.
14+
15+
# How would you feel if this feature request was implemented?
16+
17+
_Share a gif from [giphy](https://giphy.com/) to tells us how you'd feel. Format: ![alt_text](https://media.giphy.com/media/xxx/giphy.gif)_
18+
19+
# Requirements
20+
21+
A list of requirements to consider this feature delivered
22+
- Requirement 1
23+
- Requirement 2
24+
- ...
25+
26+
# Tasks
27+
28+
_To be filled in by the engineer picking up the issue_
29+
30+
- [ ] Task 1
31+
- [ ] Task 2
32+
- [ ] ...

.github/ISSUE_TEMPLATE/subtask.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Sub task
3+
about: A sub task
4+
title: ''
5+
labels: subtask
6+
assignees: ''
7+
8+
---
9+
10+
Required by <link to parent issue>
11+
12+
# Description
13+
14+
A clear and concise description of what this subtask is.
15+
16+
# Tasks
17+
18+
_To be filled in by the engineer picking up the subtask
19+
20+
- [ ] Task 1
21+
- [ ] Task 2
22+
- [ ] ...

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
## Purpose
2+
<!-- Describe the intention of the changes being proposed. What problem does it solve or functionality does it add? -->
3+
* ...
4+
5+
## Does this introduce a breaking change?
6+
<!-- Mark one with an "x". -->
7+
8+
- [ ] Yes
9+
- [ ] No
10+
11+
<!-- Please prefix your PR title with one of the following:
12+
* `feat`: A new feature
13+
* `fix`: A bug fix
14+
* `docs`: Documentation only changes
15+
* `style`: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
16+
* `refactor`: A code change that neither fixes a bug nor adds a feature
17+
* `perf`: A code change that improves performance
18+
* `test`: Adding missing tests or correcting existing tests
19+
* `build`: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
20+
* `ci`: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
21+
* `chore`: Other changes that don't modify src or test files
22+
* `revert`: Reverts a previous commit
23+
* !: A breaking change is indicated with a `!` after the listed prefixes above, e.g. `feat!`, `fix!`, `refactor!`, etc.
24+
-->
25+
26+
## Golden Path Validation
27+
- [ ] I have tested the primary workflows (the "golden path") to ensure they function correctly without errors.
28+
29+
## Deployment Validation
30+
- [ ] I have validated the deployment process successfully and all services are running as expected with this change.
31+
32+
## What to Check
33+
Verify that the following are valid
34+
* ...
35+
36+
## Other Information
37+
<!-- Add any other helpful information that may be needed here.. -->

.github/dependabot.yml

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
version: 2
2+
updates:
3+
# 1. React (JavaScript/TypeScript) dependencies
4+
- package-ecosystem: "npm"
5+
directory: "/ClientAdvisor/App/frontend"
6+
schedule:
7+
interval: "monthly"
8+
commit-message:
9+
prefix: "build"
10+
target-branch: "dependabotchanges"
11+
open-pull-requests-limit: 15
12+
13+
- package-ecosystem: "npm"
14+
directory: "/ResearchAssistant/App/frontend"
15+
schedule:
16+
interval: "monthly"
17+
commit-message:
18+
prefix: "build"
19+
target-branch: "dependabotchanges"
20+
open-pull-requests-limit: 15
21+
22+
# 2. Python dependencies
23+
- package-ecosystem: "pip"
24+
directory: "/ClientAdvisor/App"
25+
schedule:
26+
interval: "monthly"
27+
commit-message:
28+
prefix: "build"
29+
target-branch: "dependabotchanges"
30+
open-pull-requests-limit: 15
31+
32+
- package-ecosystem: "pip"
33+
directory: "/ClientAdvisor/AzureFunction"
34+
schedule:
35+
interval: "monthly"
36+
commit-message:
37+
prefix: "build"
38+
target-branch: "dependabotchanges"
39+
open-pull-requests-limit: 15
40+
41+
- package-ecosystem: "pip"
42+
directory: "/ClientAdvisor/Deployment/scripts/fabric_scripts"
43+
schedule:
44+
interval: "monthly"
45+
commit-message:
46+
prefix: "build"
47+
target-branch: "dependabotchanges"
48+
open-pull-requests-limit: 15
49+
50+
- package-ecosystem: "pip"
51+
directory: "/ClientAdvisor/Deployment/scripts/index_scripts"
52+
schedule:
53+
interval: "monthly"
54+
commit-message:
55+
prefix: "build"
56+
target-branch: "dependabotchanges"
57+
open-pull-requests-limit: 15
58+
59+
- package-ecosystem: "pip"
60+
directory: "/ResearchAssistant/App"
61+
schedule:
62+
interval: "monthly"
63+
commit-message:
64+
prefix: "build"
65+
target-branch: "dependabotchanges"
66+
open-pull-requests-limit: 15
67+
68+
- package-ecosystem: "pip"
69+
directory: "/ResearchAssistant/Deployment/scripts/aihub_scripts"
70+
schedule:
71+
interval: "monthly"
72+
commit-message:
73+
prefix: "build"
74+
target-branch: "dependabotchanges"
75+
open-pull-requests-limit: 15
76+
77+
- package-ecosystem: "pip"
78+
directory: "/ResearchAssistant/Deployment/scripts/fabric_scripts"
79+
schedule:
80+
interval: "monthly"
81+
commit-message:
82+
prefix: "build"
83+
target-branch: "dependabotchanges"
84+
open-pull-requests-limit: 15
85+
86+
- package-ecosystem: "pip"
87+
directory: "/ResearchAssistant/Deployment/scripts/index_scripts"
88+
schedule:
89+
interval: "monthly"
90+
commit-message:
91+
prefix: "build"
92+
target-branch: "dependabotchanges"
93+
open-pull-requests-limit: 16

0 commit comments

Comments
 (0)