├── .github ├── labeler.yml └── workflows │ └── labeler.yml ├── README.md └── student.txt /.github/labeler.yml: -------------------------------------------------------------------------------- 1 | hacktoberfest-accepted: 2 | - '**' 3 | -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- 1 | name: "Pull Request Labeler" 2 | 3 | on: 4 | - pull_request_target 5 | 6 | jobs: 7 | triage: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/labeler@main 11 | with: 12 | repo-token: ${{ secrets.GITHUB_TOKEN }} 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hacker Introduction 2 | Create a file with your university roll number as file name and introduce yourself. The file must be be a markdown file.
3 | You can use [Stack edit](https://stackedit.io/) to check your markdown. 4 | -------------------------------------------------------------------------------- /student.txt: -------------------------------------------------------------------------------- 1 | 17075047 2 | Rahul Chaturvedi 3 | CSE 4 | --------------------------------------------------------------------------------