We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8ff649d + 4b81713 commit 498267bCopy full SHA for 498267b
.github/workflows/welcome.yml
@@ -0,0 +1,15 @@
1
+name: Post welcome comment
2
+on:
3
+ pull_request:
4
+ types: [opened]
5
+permissions:
6
+ pull-requests: write
7
+jobs:
8
+ welcome:
9
+ name: Post welcome comment
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - run: gh pr comment "$PR_URL" --body "Welcome to the repository!"
13
+ env:
14
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15
+ PR_URL: ${{ github.event.pull_request.html_url }}
0 commit comments