forked from EddieHubCommunity/BioDrop
-
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.
Issue EddieHubCommunity#6 - Add EddieHubCommunity template files (Edd…
…ieHubCommunity#9) * Issue EddieHubCommunity#6 - Add EddieHubCommunity template files * fix: json image url Co-authored-by: Rohan Kulkarni <[email protected]>
- Loading branch information
1 parent
7ed8fa6
commit 50b562f
Showing
5 changed files
with
92 additions
and
0 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,3 @@ | ||
# These are supported funding model platforms | ||
|
||
github: [eddiejaoude] |
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,11 @@ | ||
<!-- issue number --> | ||
Fixes # | ||
|
||
## Proposed Changes | ||
|
||
- | ||
- | ||
- | ||
|
||
<!-- include an screenshot if applicable --> | ||
## Screenshots |
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: To request a feature that would enhance the project | ||
title: '' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Description** | ||
|
||
<!-- A brief description of the feature, and why is it necessary --> | ||
|
||
**Priority** | ||
|
||
<!-- How important / urgent is this feature? --> | ||
|
||
**Screenshots** | ||
|
||
<!-- Please add a screenshot if applicable --> | ||
|
||
**Additional Context** <!-- Optional --> | ||
|
||
<!-- Add any other context about the problem here. --> | ||
|
||
Join Eddie's discord community [here](http://discord.eddiehub.org) |
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,33 @@ | ||
on: | ||
fork: | ||
push: | ||
branches: [ main ] | ||
issues: | ||
types: [ opened ] | ||
issue_comment: | ||
types: [ created ] | ||
pull_request_target: | ||
types: [ opened ] | ||
pull_request_review_comment: | ||
types: [ created ] | ||
|
||
jobs: | ||
|
||
welcome: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: EddieHubCommunity/gh-action-community/src/welcome@main | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-message: '<h1>It''s great having you contribute to this project</h1> Welcome to the community :nerd_face:' | ||
pr-message: '<h1>It''s great having you contribute to this project</h1> Welcome to the community :nerd_face:' | ||
footer: 'If you would like to continue contributing to open source and would like to do it with an awesome inclusive community, you should join our <a href="http://discord.eddiehub.org">Discord</a> chat and our <a href="http://github.eddiehub.org">GitHub Organisation</a> - we help and encourage each other to contribute to open source little and often 🤓 . Any questions let us know.' | ||
|
||
statistics: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: EddieHubCommunity/gh-action-community/src/statistics@main | ||
with: | ||
firebase-key: ${{ secrets.FIREBASE_KEY }} |
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,19 @@ | ||
name: Mark stale issues and pull requests | ||
|
||
on: | ||
schedule: | ||
- cron: "30 1 * * *" | ||
|
||
jobs: | ||
stale: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/stale@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: 'Stale issue message' | ||
stale-pr-message: 'Stale pull request message' | ||
stale-issue-label: 'no-issue-activity' | ||
stale-pr-label: 'no-pr-activity' |