Dark Mode Toggle Button Not Working #772
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: Greetings | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| pull_request_target: | |
| types: | |
| - opened | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| greeting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Send greeting | |
| uses: actions/first-interaction@v1 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-message: | | |
| Thank you for opening your first issue in DevPath. | |
| Please make sure to: | |
| - Read CONTRIBUTING.md | |
| - Wait for assignment before starting work | |
| - Follow repository guidelines carefully | |
| Happy contributing. | |
| pr-message: | | |
| Thank you for submitting your first pull request to DevPath. | |
| Before review: | |
| - Complete the PR template fully | |
| - Ensure all tests pass | |
| - Link your PR to an issue | |
| - Keep changes scoped to the issue | |
| A maintainer will review your contribution soon. |