Skip to content

Commit

Permalink
Merge pull request #1 from occunha/welcome-workflow
Browse files Browse the repository at this point in the history
Welcome workflow
  • Loading branch information
occunha authored Mar 30, 2024
2 parents ee04fd7 + f2a5887 commit 925aa7c
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 925aa7c

Please sign in to comment.