feat: add Docker support and setup documentation #31
Workflow file for this run
This file contains hidden or 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
| name: Welcome New Contributors | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request: | |
| types: [opened] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| welcome: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Welcome message | |
| uses: actions/first-interaction@v1 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-message: | | |
| 👋 Welcome to LearnHub! Thank you for opening your first issue here. | |
| Please make sure to review our [Contributing Guidelines](https://github.com/udaycodespace/learnhub/blob/main/CONTRIBUTING.md) and [Code of Conduct](https://github.com/udaycodespace/learnhub/blob/main/CODE_OF_CONDUCT.md). | |
| If you would like to work on this issue, comment `/assign` and wait to be assigned before coding. Happy contributing! | |
| pr-message: | | |
| 🎉 Thank you for submitting your first Pull Request to LearnHub! | |
| We appreciate your time and effort. A maintainer will review your changes shortly. | |
| In the meantime, please make sure your PR follows our [Contributing Guidelines](https://github.com/udaycodespace/learnhub/blob/main/CONTRIBUTING.md) and has a linked issue. |