Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sundaram2021 committed Oct 4, 2024
1 parent 1bd999a commit f71ae43
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
pull_request:
branches:
- main
issues:
types: [opened]
workflow_dispatch:

env:
Expand Down Expand Up @@ -38,11 +40,18 @@ jobs:
issues: write
pull-requests: write
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "Message that will be displayed on users' first issue"
pr-message: "Message that will be displayed on users' first pull request"
- name: Greeting on PR
if: github.event_name == 'pull_request'
uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
pr-message: "Message that will be displayed on users' first pull request"
- name: Greeting on Issue
if: github.event_name == 'issues'
uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "Thank you for opening an issue! We appreciate your contribution and will review it shortly."
welcome:
name: Welcome
runs-on: ubuntu-latest
Expand Down

0 comments on commit f71ae43

Please sign in to comment.