Skip to content

Commit

Permalink
Revert "Disabled greeting action (#38)" (#50)
Browse files Browse the repository at this point in the history
This reverts commit 82f0618.
  • Loading branch information
retr0h committed Nov 30, 2023
1 parent 1ee2e50 commit d198b3e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Greetings

on: [pull_request, issues]

jobs:
greeting:
runs-on: ubuntu-latest
steps:
- uses: actions/first-interaction@v1
if: env.month != 'Oct'
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: 'Thank you for your first issue! πŸ˜ŠπŸ•ΉοΈ'
pr-message: 'Thank you for contributing to this project! πŸ˜ŠπŸ•ΉοΈ'
- uses: actions/first-interaction@v1
if: env.month == 'Oct'
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: 'Thank you for your first issue! Happy Hacktoberfest!!! πŸŽƒπŸ‘•πŸ•ΉοΈ'
pr-message: 'Thank you for contributing to this project. Happy Hacktoberfest!!! πŸŽƒπŸ‘•πŸ•ΉοΈ'

0 comments on commit d198b3e

Please sign in to comment.