forked from rapidpro/rapidpro
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update rapidpro version to 7.5.149 --------- Co-authored-by: Rowan Seymour <[email protected]> Co-authored-by: Eric Newcomer <[email protected]> Co-authored-by: Norbert Kwizera <[email protected]>
- Loading branch information
1 parent
4cf664f
commit c8b3f81
Showing
741 changed files
with
3,053 additions
and
530,642 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 |
---|---|---|
|
@@ -5,4 +5,7 @@ coverage: | |
status: | ||
project: | ||
default: | ||
target: 100% | ||
target: 100% | ||
|
||
ignore: | ||
- "static" |
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,32 @@ | ||
--- | ||
name: 🐛 Bug Report | ||
about: Report a bug you've found. Don't ask support questions here. | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem 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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
blank_issues_enabled: false | ||
|
||
contact_links: | ||
- name: Getting Help | ||
url: https://groups.google.com/g/rapidpro-dev | ||
about: If you have a question about your own installation, ask a question on the dev list. | ||
- name: Bugs and feature requests | ||
url: https://github.com/nyaruka/rapidpro/issues | ||
about: Open an issue with the maintainers to file a bug you found or to collaborate on new features. | ||
- name: Feature Requests | ||
url: https://github.com/nyaruka/rapidpro/discussions/categories/ideas | ||
about: Suggest a new feature to discuss before beginning development | ||
- name: Questions | ||
url: https://github.com/nyaruka/rapidpro/discussions/categories/q-a | ||
about: Ask general questions about RapidPro |
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,33 +1,27 @@ | ||
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. | ||
# | ||
# You can adjust the behavior by modifying this file. | ||
# For more information, see: | ||
# https://github.com/actions/stale | ||
name: Close inactive issues and PRs | ||
|
||
# For more information, see: https://github.com/actions/stale | ||
name: Close stale issues and PRs | ||
on: | ||
schedule: | ||
- cron: '30 1 * * *' | ||
|
||
- cron: "30 1 * * *" | ||
jobs: | ||
stale: | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
steps: | ||
- uses: actions/stale@v5 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-label: 'inactive' | ||
stale-issue-message: 'Without activity, this issue will be closed in 14 days.' | ||
close-issue-message: 'This issue was closed for inactivity.' | ||
stale-pr-message: 'Without activity, this PR will be closed in 14 days.' | ||
close-pr-message: 'This PR was closed for inactivity.' | ||
stale-pr-label: 'inactive' | ||
days-before-pr-stale: 30 | ||
days-before-pr-close: 14 | ||
days-before-issue-stale: 30 | ||
days-before-issue-close: 14 | ||
- uses: actions/stale@v5 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-label: "inactive" | ||
stale-issue-message: "Without activity, this issue will be closed in 14 days." | ||
close-issue-message: "This issue was closed for inactivity." | ||
stale-pr-message: "Without activity, this PR will be closed in 14 days." | ||
close-pr-message: "This PR was closed for inactivity." | ||
stale-pr-label: "inactive" | ||
days-before-pr-stale: 30 | ||
days-before-pr-close: 14 | ||
days-before-issue-stale: 30 | ||
days-before-issue-close: 14 | ||
exempt-all-assignees: true |
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
Oops, something went wrong.