diff --git a/.github/workflows/PULL_REQUEST_TEMPLATE.md b/.github/workflows/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 5f7fd77f..00000000 --- a/.github/workflows/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,83 +0,0 @@ - - -## What type of PR is this? (check all applicable) - -- [ ] โ™ป๏ธ Refactor -- [ ] โœจ New Feature -- [ ] ๐Ÿ› Bug Fix -- [ ] ๐Ÿ“ Documentation Update -- [ ] ๐Ÿ‘ท Example Application -- [ ] ๐Ÿง‘โ€๐Ÿ’ป Code Snippet -- [ ] ๐ŸŽจ Design -- [ ] ๐Ÿ“– Content -- [ ] ๐Ÿงช Tests -- [ ] ๐Ÿ”– Release -- [ ] ๐Ÿšฉ Other - -## Description - - - -This PR [adds/removes/fixes/replaces] this [feature/bug/etc]. - -## Related Tickets & Documents - -Resolves # - -## Mobile & Desktop Screenshots/Recordings - - - -## Added code snippets? -- [ ] ๐Ÿ‘ yes -- [ ] ๐Ÿ™… no, because they aren't needed - -## Added tests? - -- [ ] ๐Ÿ‘ yes -- [ ] ๐Ÿ™… no, because they aren't needed -- [ ] ๐Ÿ™‹ no, because I need help - -### No tests? Add a note - - -## Added to documentation? - -- [ ] ๐Ÿ“œ readme -- [ ] ๐Ÿ“œ contributing.md -- [ ] ๐Ÿ““ general documentation -- [ ] ๐Ÿ™… no documentation needed - -### No docs? Add a note - - -## [optional] Are there any post-deployment tasks we need to perform? - - - -## [optional] What gif best describes this PR or how it makes you feel? - - - - diff --git a/.github/workflows/take.yml b/.github/workflows/take.yml deleted file mode 100644 index 5d2a5249..00000000 --- a/.github/workflows/take.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Auto-assign issue to contributor - -on: - issue_comment: - types: [created] - -jobs: - assign: - name: Take an issue - runs-on: ubuntu-latest - permissions: - issues: write - steps: - - name: Check if it's October - id: check-month - run: | - current_month=$(date -u +%m) - if [[ $current_month == "10" ]]; then - echo "is_october=true" >> $GITHUB_OUTPUT - else - echo "is_october=false" >> $GITHUB_OUTPUT - fi - - - name: Take the issue - if: steps.check-month.outputs.is_october == 'true' - uses: bdougie/take-action@1439165ac45a7461c2d89a59952cd7d941964b87 - with: - message: Thanks for taking this issue! Let us know if you have any questions! - trigger: .take - token: ${{ secrets.GITHUB_TOKEN }} - - - name: Log when outside October - if: steps.check-month.outputs.is_october == 'false' - run: echo "Action skipped because the current date is not in October."