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

Commit

Permalink
feat: add first interaction GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Jan 4, 2024
1 parent 078d640 commit f94d24c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/first_interaction.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: First Interaction

on: [pull_request, issues]

jobs:
first-interaction:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: 'Hello @${{ github.actor }}, thanks for opening your first issue 😊! We really appreciate your work. Happy Coding πŸŽ‰πŸŽŠ !'
pr-message: 'Hello @${{ github.actor }}, thanks for opening your first pull request 😊! We really appreciate your work. Happy Coding πŸŽ‰πŸŽŠ !'

0 comments on commit f94d24c

Please sign in to comment.