You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
workflow_dispatch: # Allows the maintainer to run this workflow manually
9
+
10
+
jobs:
11
+
welcome:
12
+
runs-on: ubuntu-latest
13
+
permissions:
14
+
issues: write
15
+
pull-requests: write
16
+
17
+
steps:
18
+
- name: Welcome First-Time Issue Author
19
+
if: github.event_name == 'issues'
20
+
uses: actions/first-interaction@v1
21
+
with:
22
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
23
+
issue-message: |
24
+
👋 Welcome to **is-one-one**, @${{ github.event.issue.user.login }}!
25
+
26
+
Thanks for opening your first issue. Our team of engineering students will look into this soon! We love exploring new and creative ways to prove `1 == 1`.
27
+
28
+
While you wait, please take a look at our [Contributing Guidelines](https://github.com/Py-Contributors/is-one-one/blob/85c9377cad3dd45a38b117f53dbbef99158c0224/CONTRIBUTING.md) to see how we structure our project. We look forward to collaborating with you! 🚀
29
+
30
+
- name: Welcome First-Time PR Author
31
+
if: github.event_name == 'pull_request_target'
32
+
uses: actions/first-interaction@v1
33
+
with:
34
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
35
+
pr-message: |
36
+
👋 Welcome to **is-one-one**, @${{ github.event.pull_request.user.login }}!
37
+
38
+
Thank you for submitting your first pull request! We really appreciate your time and effort in contributing to the project.
39
+
40
+
Our automated test suite will run shortly to verify your contribution. In the meantime, please review our [Contributing Guidelines](https://github.com/Py-Contributors/is-one-one/blob/85c9377cad3dd45a38b117f53dbbef99158c0224/CONTRIBUTING.md) to ensure your PR matches our repository requirements. Happy coding! 🧠
0 commit comments