Skip to content

Commit

Permalink
Merge pull request #1 from gjofili/welcome-workflow
Browse files Browse the repository at this point in the history
Welcome workflow
  • Loading branch information
gjofili authored Jul 23, 2024
2 parents 65ecdbd + 5a7415e commit 32701cf
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/welcome.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Post welcome comment
on:
pull_request:
types: [opened]
permissions:
pull-requests: write
jobs:
build:
name: Post welcome comment
runs-on: ubuntu-latest
steps:
- run: gh pr comment $PR_URL --body "Welcome to the repository!"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_URL: ${{ github.event.pull_request.html_url }}

0 comments on commit 32701cf

Please sign in to comment.