Skip to content

Commit

Permalink
Actions: Create Workflow to Welcome Assignees (#407)
Browse files Browse the repository at this point in the history
Created GH Actions workflow to welcome assignees
and provide helpful links.
  • Loading branch information
kyleecodes committed Mar 22, 2024
1 parent da3d674 commit 3ca6bd2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/community_management.yml
@@ -0,0 +1,23 @@
# This workflow comments helpful info in issues when they are assigned.
# For more information, see:
# https://github.com/actions/first-interaction

name: Community Management
on:
issues:
types:
- assigned
jobs:
add-comment:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Add comment
run: gh issue comment "$NUMBER" --body "$BODY"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
BODY: "Thank you for your interest in contributing to Chayn! Please carefully read the CONTRIBUTING.md file and the README.md file for guidance. Let us know if you have any questions. Happy Coding!"

0 comments on commit 3ca6bd2

Please sign in to comment.