Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dakshsinghrathore/gh-action-community
GitHub Action for the Community, from welcoming first timers to badges
https://github.com/dakshsinghrathore/gh-action-community
Last synced: 18 days ago
JSON representation
GitHub Action for the Community, from welcoming first timers to badges
- Host: GitHub
- URL: https://github.com/dakshsinghrathore/gh-action-community
- Owner: dakshsinghrathore
- License: apache-2.0
- Created: 2024-04-26T15:54:16.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-26T17:31:08.000Z (7 months ago)
- Last Synced: 2024-04-26T18:28:54.609Z (7 months ago)
- Language: JavaScript
- Size: 1.18 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub Action Community
GitHub Action for the Community - from welcoming first timers to logging your activity for badges!
## GitHub Action Features 💡
These GitHub Actions will:
- reply to all new **Issues** and **Pull Requests**
- log statistics of user activity to Firestore DB (Firebase)
## QuickstartYou can use 1 or all of these GitHub Actions.
To create a GitHub Action
1. In the folder `.github/workflows/`
2. Create a file `welcome.yaml` (or another name you prefer)
3. Add the Action config### Welcoming message
This GitHub Action will reply to all new **Issues** and **Pull Requests** with a custom message
Example usage (you can change the replies for `issue-message` and `pr-message`)
```yaml
welcome:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: EddieHubCommunity/gh-action-community/src/welcome@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: 'It''s great having you contribute to this project
Feel free to raise an Issue! Welcome to the community :nerd_face:'
pr-message: 'It''s great having you contribute to this project
Feel free to create a Pull Request! Welcome to the community :nerd_face:'
```#### Options
`footer` is an optional parameter, which can be used to append the `issue-message` and `pr-message`
### Store community activity
This GitHub Action will log statistics of user activity to Firestore DB (Firebase)
```yaml
statistics:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: EddieHubCommunity/gh-action-community/src/statistics@main
if: ${{ }}
with:
api-key: ${{ secrets.API_TOKEN }}
api-url: ${{ secrets.API_URI }}
```Here is a complete example https://github.com/EddieHubCommunity/LinkFree/blob/main/.github/workflows/community.yml
## Our Pledge
We take participation in our community as a harassment-free experience for everyone and we pledge to act in ways to contribute to an open, welcoming, diverse and inclusive community.
If you have experienced or been made aware of unacceptable behaviour, please remember that you can report this. [Read our Code of Conduct](https://github.com/EddieHubCommunity/gh-action-community/blob/main/CODE_OF_CONDUCT.md).