We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 300a540 commit 4c7e356Copy full SHA for 4c7e356
1 file changed
.github/workflows/welcome.yml
@@ -1,4 +1,6 @@
1
# Greet first-time contributors.
2
+#
3
+# It runs in issues and pull requests from forks.
4
5
name: Greet First-Time Contributors
6
@@ -13,10 +15,13 @@ on:
13
15
permissions:
14
16
issues: write
17
pull-requests: write
18
+ id-token: write
19
+ contents: read
20
21
jobs:
22
greeting:
23
24
+ if: github.event_name == 'issues' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
25
runs-on: ubuntu-latest
26
27
steps:
0 commit comments