Skip to content

Commit

Permalink
Issue EddieHubCommunity#6 - Add EddieHubCommunity template files (Edd…
Browse files Browse the repository at this point in the history
…ieHubCommunity#9)

* Issue EddieHubCommunity#6 - Add EddieHubCommunity template files

* fix: json image url

Co-authored-by: Rohan Kulkarni <[email protected]>
  • Loading branch information
stemount and rohan-kulkarni-25 authored Sep 13, 2021
1 parent 7ed8fa6 commit 50b562f
Show file tree
Hide file tree
Showing 5 changed files with 92 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These are supported funding model platforms

github: [eddiejaoude]
11 changes: 11 additions & 0 deletions .github/pull_request_template.md
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
26 changes: 26 additions & 0 deletions .github/workflows/ISSUE_TEMPLATES/feature.md
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)
33 changes: 33 additions & 0 deletions .github/workflows/community.yml
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 }}
19 changes: 19 additions & 0 deletions .github/workflows/stale.yml
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'

0 comments on commit 50b562f

Please sign in to comment.