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.
1 parent 54cbbe0 commit 318233dCopy full SHA for 318233d
.github/workflows/pull_request-opened.yml
@@ -11,7 +11,7 @@ jobs:
11
notify-greet:
12
runs-on: ubuntu-latest
13
steps:
14
- - name: Greet
+ - name: Auto assign
15
uses: actions/github-script@v7
16
with:
17
script: |
@@ -20,15 +20,18 @@ jobs:
20
owner: context.repo.owner,
21
repo: context.repo.repo,
22
assignees: [ "simonkovtyk" ]
23
- })
24
-
+ });
+
25
github.rest.issues.addLabels({
26
issue_number: context.issue.number,
27
28
29
labels: [ "feature" ]
30
});
31
+ - name: Greet
32
+ uses: actions/github-script@v7
33
+ with:
34
+ script: |
35
const body = `### 🎉 Welcome!
36
37
Thank you for your contribution and for opening this pull request.
0 commit comments