File tree Expand file tree Collapse file tree 1 file changed +31
-4
lines changed Expand file tree Collapse file tree 1 file changed +31
-4
lines changed Original file line number Diff line number Diff line change 6
6
# HAWK Catcher TOKEN
7
7
HAWK_TOKEN =
8
8
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
+ # }
10
37
COLUMN_NODE_ID_TO_DO =
11
38
COLUMN_NODE_ID_PR =
12
39
@@ -16,12 +43,12 @@ COLUMN_NODE_ID_PR=
16
43
NOTIFIER_URL =
17
44
18
45
# 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"
20
47
21
48
# 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"
23
50
24
- # If using docker-compose set time there
51
+ # Define job
25
52
TO_DO_TIME = " 0 9,20 * * 1-5"
26
53
PR_TIME = " 0 9,20 * * 1-5"
27
54
MEETING_TIME = " 0 21 * * 1-5"
You can’t perform that action at this time.
0 commit comments