Spaces:
Runtime error
Runtime error
neon_arch
commited on
Commit
•
612382b
1
Parent(s):
5d6f50a
ci: add github ci to thanks first time contributors
Browse files- .github/workflows/hello.yml +18 -0
.github/workflows/hello.yml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Welcome first time contributors
|
2 |
+
|
3 |
+
on:
|
4 |
+
pull_request_target:
|
5 |
+
types:
|
6 |
+
- opened
|
7 |
+
|
8 |
+
jobs:
|
9 |
+
welcome:
|
10 |
+
name: Welcome
|
11 |
+
runs-on: ubuntu-latest
|
12 |
+
steps:
|
13 |
+
- uses: actions/first-interaction@v1
|
14 |
+
with:
|
15 |
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
16 |
+
pr-message: |-
|
17 |
+
Congrats on making your first Pull Request and thanks for taking the time to improve Websurfx! ❤️!
|
18 |
+
Say hello by joining the conversation in our [Discord](https://discord.gg/SWnda7Mw5u)
|