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
const comment = `Hello @${author}! \n Thank you for raising this issue. \nPlease make sure to follow our [Contributing Guidelines.](https://github.com/devs-in-tech/DevsInTech/blob/main/CONTRIBUTING.md) \nDon't forget to ⭐ our [DevsInTech](https://github.com/devs-in-tech/DevsInTech)\n\nOur review team will carefully assess the issue and reach out to you soon!\n We appreciate your patience!`;
27
+
28
+
const { owner, repo } = context.repo;
29
+
30
+
await github.issues.createComment({
31
+
owner: owner,
32
+
repo: repo,
33
+
issue_number: issueNumber,
34
+
body: comment
35
+
});
36
+
37
+
console.log(`Comment added to the Issue #${issueNumber}.`);
const comment = `Hey @${openerName} , You can't have another issue before completing the previous one 😀 \n you already have the following ${previousOpenIssues.length} open issues 👀 ! :\n\n${previousOpenIssueNumbers.join('\n')}`;
36
+
core.exportVariable('comment_body', comment); // Export the variable
Copy file name to clipboardExpand all lines: README.md
+7-10Lines changed: 7 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,6 @@ DevsInTech offers a wide range of resources and opportunities for developers and
54
54
>
55
55
> - Before getting into it, make sure you have [pnpm](https://nodejs.org/download) installed.
56
56
57
-
58
57
### Let's jump right in🌟
59
58
60
59
1. Fork the project
@@ -114,19 +113,17 @@ DevsInTech offers a wide range of resources and opportunities for developers and
114
113
115
114
### Setup using Docker
116
115
117
-
* Enter the root directory
116
+
- Enter the root directory
118
117
119
-
```sh
120
-
docker build .
118
+
```sh
119
+
docker build .
121
120
122
-
```
121
+
```
123
122
124
-
125
-
```sh
126
-
docker run -p 3000:80 <Image>
127
-
```
123
+
```sh
124
+
docker run -p 3000:80 <Image>
125
+
```
128
126
129
-
130
127
# Contribute
131
128
132
129
We welcome contributions in our community. Learn how to start contributing, from installing the project on your device to submitting a pull request with our<Link href="https://github.com/devs-in-tech/DevsInTech/blob/main/CONTRIBUTING.md"> Contribution guide.<Link/>
0 commit comments