Skip to content

Commit 8d99c83

Browse files
authored
Merge pull request #24 from codex-team/talyguryn-patch-1
Update docs in env
2 parents 374d242 + 866fc4a commit 8d99c83

File tree

1 file changed

+31
-4
lines changed

1 file changed

+31
-4
lines changed

.env.example

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,34 @@ TOKEN=
66
# HAWK Catcher TOKEN
77
HAWK_TOKEN=
88

9-
# Node id
9+
# Columns Nodes id
10+
# To get these values use any app for sending requests (Insomnia for example) and send the following request
11+
# Use your data for the YOUR_GITHUB_PERSONAL_ACCESS_TOKEN, org name and number of project (11 in this example) from it's link
12+
# If everything is correct you will get a list of project's columns with theis node id's which you need for the script.
13+
#
14+
# Endpoint: https://api.github.com/graphql
15+
# Request Type: POST
16+
# Headers:
17+
# Authorization: bearer YOUR_GITHUB_PERSONAL_ACCESS_TOKEN
18+
# Content-Type: application/json
19+
# Body Type: GraphQL
20+
# Body:
21+
# query {
22+
# organization(login: "codex-team") {
23+
# project(number: 11) {
24+
# id,
25+
# name,
26+
# columns(first: 10) {
27+
# edges {
28+
# node {
29+
# id,
30+
# name
31+
# }
32+
# }
33+
# }
34+
# }
35+
# }
36+
# }
1037
COLUMN_NODE_ID_TO_DO=
1138
COLUMN_NODE_ID_PR=
1239

@@ -16,12 +43,12 @@ COLUMN_NODE_ID_PR=
1643
NOTIFIER_URL=
1744

1845
# List of people to tag in the «Pull Requests» message
19-
MENTION = "ilyamore88 fabled228 Xemka kebyo GeekaN2 robonetphy neSpecc nikmel2803 n0str talyguryn gohabereg khaydarov f0m41h4u7 SunnyCapt dependabot"
46+
MENTION = "ilyamore88 GeekaN2 robonetphy neSpecc nikmel2803 n0str talyguryn gohabereg khaydarov f0m41h4u7 dependabot"
2047

2148
# List of people to tag in the «Meeting Message» message
22-
MEETING_MENTION = "specc guryn khaydarovm nikmel2803 xemk4 gohabereg ilyamore88 GeekaN augustovich n0str f0m41h4u7 oybekmuslimov fabl228 robonetphy"
49+
MEETING_MENTION = "specc guryn khaydarovm nikmel2803 gohabereg ilyamore88 GeekaN augustovich n0str f0m41h4u7 robonetphy"
2350

24-
# If using docker-compose set time there
51+
# Define job
2552
TO_DO_TIME="0 9,20 * * 1-5"
2653
PR_TIME="0 9,20 * * 1-5"
2754
MEETING_TIME = "0 21 * * 1-5"

0 commit comments

Comments
 (0)