Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
Hacktoberfest 2024 Add take action to auto assign contributors (#300)
Browse files Browse the repository at this point in the history
Co-authored-by: Tania Chakraborty <[email protected]>
  • Loading branch information
taniashiba and Tania Chakraborty authored Oct 1, 2024
1 parent 240f5ca commit 2a98d69
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/take.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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."

0 comments on commit 2a98d69

Please sign in to comment.