-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed code standared violation fixes
- Loading branch information
1 parent
7620db7
commit 6a3a440
Showing
10 changed files
with
155 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "[BUG] " | ||
labels: bug | ||
assignees: Sachinbisht27 | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Set webhook payload '...' | ||
2. Trigger webhook '....' | ||
3. See the error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Environment (please complete the following information):** | ||
- Webhook Payload ``` here``` | ||
- Environment - Production/Staging/other | ||
|
||
**Additional context** | ||
Add any other context about the problem here. | ||
|
||
**Acceptance Criteria** | ||
Add acceptance criteria here. | ||
|
||
**Documentation** | ||
Add whatever documentation will be required here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: "[FEATURE] " | ||
labels: enhancement | ||
assignees: Sachinbisht27 | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. | ||
|
||
|
||
**Acceptance Criteria** | ||
Add acceptance criteria here. | ||
|
||
**Documentation** | ||
Add whatever documentation will be required here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!-- Pull Request Title Guidelines --> | ||
<!-- | ||
Please follow the format: #<issue_id> <Title> | ||
- <issue_id>: Id of the issue for which the PR belongs to (e.g., #1023) | ||
- <Title>: A brief summary of the change (e.g., Add user authentication functionality) | ||
Example of Pull Request Title: #1023 Add user authentication functionality | ||
--> | ||
|
||
#[ISSUE_ID] | ||
<!--- If there is an open issue, please link to the issue here by replacing [ISSUE_ID]--> | ||
<!-- Make sure the PR is against the `develop` branch --> | ||
|
||
### Please complete the following steps and check these boxes before filing your PR: | ||
|
||
|
||
### Types of changes | ||
<!--- What types of changes does your code introduce? --> | ||
- [ ] Bug fix (a change which fixes an issue) | ||
- [ ] New feature (a change which adds functionality) | ||
|
||
|
||
### Short description of what this resolves: | ||
<!--- Describe your changes in detail --> | ||
<!--- Why these change required? What problem does it solve? --> | ||
|
||
|
||
### Checklist: | ||
<!--- Mark the checkboxes accordingly. --> | ||
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> | ||
- [ ] I have performed a self-review of my own code. | ||
- [ ] The code follows the style guidelines of this project. | ||
- [ ] The code changes are passing the CI checks | ||
- [ ] I have documented my code wherever required. | ||
- [ ] The changes requires a change to the documentation. | ||
- [ ] I have updated the documentation based on the my changes. | ||
- [ ] I have added tests to cover my changes (if not applicable, please state why) | ||
- [ ] All new and existing tests are passing. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: pre-commit | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- develop | ||
- main | ||
jobs: | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
- uses: pre-commit/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,27 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v3.2.0 | ||
rev: v4.6.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-json | ||
- id: check-yaml | ||
- id: check-merge-conflict | ||
- id: check-added-large-files | ||
- id: debug-statements | ||
- id: requirements-txt-fixer | ||
- repo: https://github.com/psf/black | ||
rev: 22.3.0 | ||
rev: 24.4.2 | ||
hooks: | ||
- id: black | ||
args: [--line-length=88] | ||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 7.0.0 | ||
hooks: | ||
- id: flake8 | ||
exclude: __init__.py | ||
args: [--max-line-length=170] | ||
- repo: https://github.com/PyCQA/docformatter | ||
rev: v1.7.5 | ||
hooks: | ||
- id: docformatter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
pre-commit==2.20.0 | ||
python-dotenv==0.20.0 | ||
slackclient==2.9.4 | ||
functions-framework==3.2.0 | ||
google-cloud-logging==3.5.0 | ||
google_cloud_bigquery==3.11.4 | ||
pre-commit==2.20.0 | ||
python-dotenv==0.20.0 | ||
slackclient==2.9.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
slackclient==2.9.4 | ||
functions-framework==3.2.0 | ||
google-cloud-logging==3.5.0 | ||
google_cloud_bigquery==3.11.4 | ||
slackclient==2.9.4 | ||
Werkzeug==2.3.7 |