Skip to content

Commit

Permalink
Update greetings.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Gyanthakur authored Oct 7, 2024
1 parent 54ed3d0 commit c2e2fe2
Showing 1 changed file with 60 additions and 24 deletions.
84 changes: 60 additions & 24 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
name: 'Greetings'

on:
push:
branches:
- '**' # Trigger on all branches for push events
issues:
types: [opened] # Trigger on issue opened events
pull_request:
branches:
- '**' # Trigger on pull request opened for all branches
types: [opened] # You can add other types like reopened if needed

permissions:
issues: write
pull-requests: write

jobs:
welcome:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: EddieHubCommunity/gh-action-community/src/welcome@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
Welcome, @${{ github.actor }}! Thanks for raising the issue.
Soon the maintainers/owner will review it and provide you with feedback/suggestions.
Make sure to **star this awesome repository** and **follow the account** for updates!
pr-message: |
Great job, @${{ github.actor }}! Thanks for creating the pull request.
Soon the maintainers/owner will review it and provide you with feedback/suggestions.
Make sure to **star this awesome repository** and **follow the account** for updates!
footer: 'Make sure to stay involved and contribute to the project!'




# # date 07-10-24
Expand Down Expand Up @@ -93,29 +129,29 @@



name: 'Greetings'
on:
push:
branches:
- '**' # or you can specify specific branches like 'gyan', 'Gyanthakur-patch-1', etc.
issues:
types: [opened]
pull_request:
types: [opened]
#gyan singh
# name: 'Greetings'
# on:
# push:
# branches:
# - '**' # or you can specify specific branches like 'gyan', 'Gyanthakur-patch-1', etc.
# issues:
# types: [opened]
# pull_request:
# types: [opened]
# #gyan singh

permissions:
issues: write
pull-requests: write
# permissions:
# issues: write
# pull-requests: write

jobs:
welcome:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: EddieHubCommunity/gh-action-community/src/welcome@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: 'Welcome, @${{ github.actor }}! Thanks for raising the issue!'
pr-message: 'Great job, @${{ github.actor }}! Thanks for creating the pull request!'
footer: 'Soon the maintainers/owner will review it and provide you with feedback/suggestions.Make sure to **star this awesome repository** and **follow the account**'
# jobs:
# welcome:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v1
# - uses: EddieHubCommunity/gh-action-community/src/welcome@main
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# issue-message: 'Welcome, @${{ github.actor }}! Thanks for raising the issue!'
# pr-message: 'Great job, @${{ github.actor }}! Thanks for creating the pull request!'
# footer: 'Soon the maintainers/owner will review it and provide you with feedback/suggestions.Make sure to **star this awesome repository** and **follow the account**'

0 comments on commit c2e2fe2

Please sign in to comment.