-
-
Notifications
You must be signed in to change notification settings - Fork 496
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Deleted all files in the main branch in anticipation of merging develop into main cleanly * Merge develop into main
- Loading branch information
1 parent
4d25b76
commit d1c70ff
Showing
2,060 changed files
with
159,719 additions
and
20,328 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,34 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us improve. | ||
title: Bug Report | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
|
||
1. | ||
2. | ||
3. | ||
4. | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Actual behavior** | ||
A clear and concise description of how the code performed w.r.t expectations. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Additional details** | ||
Add any other context or screenshots about the feature request here. | ||
|
||
**Potential internship candidates** | ||
Please read this if you are planning to apply for a Palisadoes Foundation internship https://github.com/PalisadoesFoundation/talawa/issues/359 |
This file was deleted.
Oops, something went wrong.
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,26 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea for this project | ||
title: Feature Request | ||
labels: feature request | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. | ||
|
||
**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. | ||
|
||
**Approach to be followed (optional)** | ||
A clear and concise description of approach to be followed. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. | ||
|
||
**Potential internship candidates** | ||
Please read this if you are planning to apply for a Palisadoes Foundation internship https://github.com/PalisadoesFoundation/talawa/issues/359 |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
version: 2 | ||
updates: | ||
# Enable version updates for flutter's pub package manager | ||
- package-ecosystem: "pub" | ||
# Look for `pubspec.yaml` and `pubspec.lock` files in the `root` directory | ||
directory: "/" | ||
# Check the pub.dev registry for updates every day (weekdays) | ||
schedule: | ||
interval: "weekly" | ||
target-branch: "develop" | ||
# # Add default reviewers | ||
# reviewers: | ||
# - "palisadoes" | ||
# - "randomUserName" | ||
|
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
############################################################################## | ||
############################################################################## | ||
# | ||
# NOTE! | ||
# | ||
# Please read the README.md file in this directory that defines what should | ||
# be placed in this file | ||
# | ||
############################################################################## | ||
############################################################################## | ||
|
||
name: Checking workflow files | ||
on: | ||
pull_request: | ||
paths: | ||
- '.github/**' | ||
- 'analysis_options.yaml' | ||
- 'pubspec.yaml' | ||
- 'pubspec.lock' | ||
- 'lib/main.dart' | ||
- 'CODEOWNERS' | ||
- 'LICENSE' | ||
|
||
jobs: | ||
Checking-for-unauthorized-file-changes: | ||
name: Checking for unauthorized file changes | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Unauthorized file modification in PR | ||
run: exit 1 |
Oops, something went wrong.