-
Notifications
You must be signed in to change notification settings - Fork 198
45 lines (40 loc) · 2.35 KB
/
new-pull-request-comment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: PR Creation Comment
on:
pull_request_target:
types:
- opened
permissions:
contents: read
pull-requests: write
jobs:
comment:
runs-on: ubuntu-latest
if: ${{ !startsWith(github.head_ref, 'mergify/merge-queue/') }}
steps:
- name: Comment on new PR
uses: thollander/actions-comment-pull-request@v2
with:
message: |
Thanks for opening this pull request! :tada:
Please consult the [contributing guidelines](https://www.winglang.io/contributing) for details on how to contribute to this project.
If you need any assistence, don't hesitate to ping the relevant owner over [Slack](https://t.winglang.io/slack).
| Topic | Owner |
|-----------------------------------------------------|---------------------------------------------------------------|
| Wing SDK and utility APIs | `@chriscbr`
| Wing Console | `@ainvoner`, `@skyrpex`, `@polamoros`
| JSON, structs, primitives and collections | `@hasanaburayyan`
| Platforms and plugins | `@hasanaburayyan`
| Frontend resources (website, react, etc) | `@tsuf239`
| Language design | `@chriscbr`
| VSCode extension and language server | `@markmcculloh`
| Compiler architecture, inflights, lifting | `@yoav-steinberg`
| Wing Testing Framework | `@tsuf239`
| Wing CLI | `@markmcculloh`
| Build system, dev environment, releases | `@markmcculloh`
| Library Ecosystem | `@chriscbr`
| Documentation | `@hasanaburayyan`
| SDK test suite | `@tsuf239`
| Examples | `@hasanaburayyan`
| Wing Playground | `@eladcon`
comment_tag: New PR
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}