-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #358 from chaynHQ/develop
Merge Develop onto Main
- Loading branch information
Showing
12 changed files
with
378 additions
and
147 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 |
---|---|---|
@@ -1,10 +1,13 @@ | ||
### Issue ticket link / number: | ||
### Issue link / number: | ||
|
||
### What changes did you make? | ||
|
||
### Why did you make the changes? | ||
|
||
<!--- PR CHECKLIST: PLEASE REMOVE BEFORE SUBMITTING —> | ||
- [ ] You have answered the above questions. | ||
- [ ] You have followed the guidelines in the CONTRIBUTING.md file | ||
- [ ] You have a descriptive and concise PR title. | ||
Before submitting, check that you have completed the following tasks: | ||
- [ ] Answered the questions above. | ||
- [ ] Read Chayn's Contributing Guidelines in the CONTRIBUTING.md file. | ||
- [ ] Enabled "Allow edits and access to secrets by maintainers" on this PR. | ||
- [ ] If applicable, include images in the description. | ||
After submitting, please be available for discussion. Thank you! |
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,23 @@ | ||
# This workflow comments helpful info in issues when they are assigned. | ||
# For more information, see: | ||
# https://github.com/actions/first-interaction | ||
|
||
name: New Assignee Issue Comment | ||
on: | ||
issues: | ||
types: | ||
- assigned | ||
jobs: | ||
add-comment: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- name: Add comment | ||
run: gh issue comment "$NUMBER" --body "$BODY" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GH_REPO: ${{ github.repository }} | ||
NUMBER: ${{ github.event.issue.number }} | ||
BODY: 'Thank you for your interest in contributing to Chayn! Please carefully read the CONTRIBUTING.md file and the README.md file for guidance. Let us know if you have any questions. Good luck!' | ||
|
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,35 @@ | ||
# This workflow warns when issues have had no activity for a specified amount of time. | ||
# For more information, see: | ||
# https://github.com/actions/stale | ||
name: Mark Stale Issues | ||
|
||
on: | ||
# Enable manual run from the Actions tab. | ||
workflow_dispatch: | ||
# Scheduled to run at 12:00 on every 1st of the month. | ||
schedule: | ||
- cron: '0 12 1 * *' | ||
|
||
jobs: | ||
stale: | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
# PR permissions can be added here | ||
issues: write | ||
|
||
steps: | ||
- uses: actions/stale@v5 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
remove-stale-when-updated: false | ||
include-only-assigned: true | ||
# Disable closing issues | ||
days-before-close: -1 | ||
stale-issue-label: 'stale' | ||
# Ignores comments as activity, only looks at date of issue creation. | ||
ignore-updates: true | ||
# Ignore developer staff and frequent contributors | ||
exempt-assignees: 'kyleecodes, swetha-charles, eleanorreem, annarhughes, tarebyte' | ||
stale-issue-message: 'As per Chayn policy, after 60 days of inactivity, we will be unassigning this issue to open it back up for contributors. Please comment to be re-assigned. Thank you for your interest in contributing to Chayn!' | ||
|
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
Large diffs are not rendered by default.
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
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
Oops, something went wrong.