├── .github ├── ISSUE_TEMPLATE │ └── invite.md ├── labels.json └── workflows │ ├── invitation.yml │ └── labels.yml ├── README.md └── image └── coders evoke 3.jpeg /.github/ISSUE_TEMPLATE/invite.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Invitation to the GitHub Organization 3 | about: I would like to be part of the awesome community 4 | title: Please invite me to the GitHub Organization 5 | labels: invite me to the organisation 6 | assignees: '' 7 | 8 | --- 9 | 10 | Please invite me to the Coders Evoke Github Organisation ! 11 | 12 | 13 | 14 | 15 | 16 | - #### Name: 17 | 18 | - #### Discord Username(if exists): 19 | 20 | 21 | 22 | - #### Additional Context: 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /.github/labels.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "name": "good first issue", "color": "7f0799" }, 3 | { "name": "help wanted", "color": "7f0799" }, 4 | { "name": "duplicate", "color": "7f0799" }, 5 | { "name": "⛔️ status: discarded", "color": "eeeeee" }, 6 | { "name": "✨ goal: improvement", "color": "ffffff" }, 7 | { "name": "❓ talk: question", "color": "f9bbe5" }, 8 | { "name": "⭐ goal: addition", "color": "ffffff" }, 9 | { "name": "🏁 status: ready for dev", "color": "cccccc" }, 10 | { "name": "💬 talk: discussion", "color": "f9bbe5" }, 11 | { "name": "💻 aspect: code", "color": "04338c" }, 12 | { "name": "📄 aspect: text", "color": "04338c" }, 13 | { "name": "🔒 staff only", "color": "7f0799" }, 14 | { "name": "🕹 aspect: interface", "color": "04338c" }, 15 | { "name": "🚦 status: awaiting triage", "color": "333333" }, 16 | { "name": "🚧 status: blocked", "color": "999999" }, 17 | { "name": "🛠 goal: fix", "color": "ffffff" }, 18 | { "name": "🟥 priority: critical", "color": "b60205" }, 19 | { "name": "🟧 priority: high", "color": "ff9f1c" }, 20 | { "name": "🟨 priority: medium", "color": "ffcc00" }, 21 | { "name": "🟩 priority: low", "color": "cfda2c" }, 22 | { "name": "🤖 aspect: dx", "color": "04338c" }, 23 | { "name": "🧹 status: ticket work required", "color": "666666" }, 24 | { "name": "🔢 points: 1", "color": "62A1A6" }, 25 | {"name": "🔢 points: 2", "color": "62A1A6" }, 26 | { "name": "🔢 points: 3", "color": "62A1A6" }, 27 | { "name": "🔢 points: 5", "color": "62A1A6" }, 28 | { "name": "🔢 points: 8", "color": "62A1A6" }, 29 | 30 | { "name": "no issue activity", "color": "ededed" }, 31 | {"name":"invite me to the organisation","color":"cfda2c"} 32 | ] 33 | -------------------------------------------------------------------------------- /.github/workflows/invitation.yml: -------------------------------------------------------------------------------- 1 | on: 2 | issues: 3 | types: [labeled] 4 | 5 | jobs: 6 | automate_invite: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - name: Invite on label 10 | uses: vj-abigo/invite-on-label@v1.2 11 | with: 12 | organization: Coders-Evoke-Community 13 | label: invite me to the organisation 14 | repo-token: ${{ secrets.GITHUB_TOKEN }} 15 | comment: 'Invitation sent for the GitHub Organisation. Welcome to the community 🎉 Collaboration First Code Second !' 16 | env: 17 | INVITE_TOKEN: ${{ secrets.INVITE_TOKEN }} 18 | -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- 1 | name: Default 2 | 3 | on: [push] 4 | 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v1 10 | - name: Label Syncer 11 | uses: micnncim/action-label-syncer@v1.3.0 12 | env: 13 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 14 | GITHUB_REPOSITORY: ${{ github.repository }} 15 | with: 16 | manifest: .github/labels.json 17 | 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Community Support 3 | 4 | [![Discord](https://img.shields.io/discord/747501329039097946?style=flat-square)](https://discord.gg/FZusE7FH4q) 5 | 6 | Raise an issue to join the **Coders Evoke** Community GitHub community. 7 | 8 | ### Ideas 9 | 10 | Get your ideas in the GitHub Issue Queue! 11 | 12 | If we could find a really good name for this, we could have a `"support"` repo in GitHub profiles, similar to the GitHub username README (n.b. to create `githubusername/githubusername` as a repo then put a README in there. 13 | 14 | We could then have folks to have their own "support" repository and be able to PR in their contributions! 15 | 16 | Please check out the [issue queue](https://github.com/Coders-Evoke-Community/support/issues) for sticking issues with this and we can all pair on this. 17 | 18 | --- 19 | ## Guide 20 | 21 | - Actions go under [issues](https://github.com/Coders-Evoke-Community/support/issues) 22 | 23 | - Bugs 24 | 25 | - Add me to the organization 26 | 27 | - Miscellaneous go under [Discussions](https://github.com/Coders-Evoke-Community/support/discussions) 28 | 29 | - Questions 30 | 31 | - Ideas (then once discussed an Issue could be created and linked to the Discussion thread) 32 | 33 | - Showcase of Open Source Portfolios to get feedback from community members. 34 | 35 | 36 | 37 | ## Steps to join The Coders Evoke org in Github 38 | 1. Go to the support repo [Support Repo](https://github.com/Coders-Evoke-Community/support) 39 | 2. Click on issue tab and then create an issue with the template **Invite me to the org**. 40 | 3. That's it you'll recieve an mail invitation to join our org in no time . 41 | 42 |
43 | 44 |
45 | 46 | 47 | ## Socials 48 | 49 | >Join our discord community [here](https://discord.gg/FZusE7FH4q) 50 | >Subscribe our YouTube channel [here](https://youtube.com/channel/UCFE8w2GXyhRTF_CObDIOKnQ) 51 | 52 | 👋 join our discord community Coders Evoke 53 | 54 | -------------------------------------------------------------------------------- /image/coders evoke 3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coders-Evoke-Community/support/47d9b0413c26ac4aa1031629acdc65857c89be76/image/coders evoke 3.jpeg --------------------------------------------------------------------------------