forked from helix-editor/helix
-
Notifications
You must be signed in to change notification settings - Fork 1
129 lines (120 loc) · 4.15 KB
/
project-add-new.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: Categorize new items
on:
issues:
types:
- labeled
- unlabeled
- opened
pull_request:
types:
- opened
jobs:
# add-to-project:
# name: Add item to project
# runs-on: ubuntu-latest
# permissions: write-all
# steps:
# - uses: actions/[email protected]
# with:
# project-url: https://github.com/orgs/helix-editor/projects/5
# github-token: ${{ secrets.TOKEN }}
new-issue:
runs-on: ubuntu-latest
steps:
- name: Get project data
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
ORGANIZATION: helix-editor
PROJECT_NUMBER: '5'
run: |
gh api graphql -f query='
query($org: String!, $number: Int!) {
organization(login: $org){
projectV2(number: $number) {
id
fields(first:50) {
nodes {
... on ProjectV2Field {
id
name
}
... on ProjectV2SingleSelectField {
id
name
options {
id
name
}
}
}
}
}
}
}' -f org=$ORGANIZATION \
-F number=$PROJECT_NUMBER \
> project_data.json
echo 'PROJECT_ID='$(jq '.data.organization.projectV2.id' project_data.json) >> $GITHUB_ENV
echo 'STATUS_FIELD_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Status") | .id' project_data.json) >> $GITHUB_ENV
# Transform each status field name into camel case and track its id
cat project_data.json | jq -r '.data.organization.projectV2.fields.nodes[]
| select(.name == "Status")
| .options[]
| {id: .id, name: .name | gsub("[^\\w\\s]\\s"; "")
| ascii_upcase
| gsub("[\\s-]"; "_")}
| "STATUS_ID_" + .name + "=" + .id' \
>> $GITHUB_ENV
- name: Add item to project
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
CONTENT_ID: ${{ github.event.issue.node_id || github.event.pull_request.node_id }}
run: |
item_id="$( gh api graphql -f query='
mutation($project:ID!, $content:ID!) {
addProjectV2ItemById(input: {projectId: $project, contentId: $content}) {
item {
id
}
}
}' -f project=$PROJECT_ID -f content=$CONTENT_ID --jq '.data.addProjectV2ItemById.item.id')"
echo 'ITEM_ID='$item_id >> $GITHUB_ENV
- name: Get date
run: echo "DATE=$(date +"%Y-%m-%d")" >> $GITHUB_ENV
- name: New PR
if: github.event.pull_request
run: echo "TARGET_OPTION_ID=${STATUS_ID_NEEDS_INITIAL_REVIEW}" >> $GITHUB_ENV
- name: Bugs
if: "github.event.issue && github.event.label.name == 'C-bug'"
run: echo "TARGET_OPTION_ID=${STATUS_ID_BUG}" >> $GITHUB_ENV
- name: New
if: "github.event.issue && github.event.label.name != 'C-bug'"
run: echo "TARGET_OPTION_ID=${STATUS_ID_NEW}" >> $GITHUB_ENV
- name: Set fields
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
run: |
gh api graphql -f query='
mutation (
$project: ID!
$item: ID!
$status_field: ID!
$status_value: String!
) {
set_status: updateProjectV2ItemFieldValue(input: {
projectId: $project
itemId: $item
fieldId: $status_field
value: {
singleSelectOptionId: $status_value
}
}) {
projectV2Item {
id
}
}
}' \
-f project=$PROJECT_ID \
-f item=$ITEM_ID \
-f status_field=$STATUS_FIELD_ID \
-f status_value=${{ env.TARGET_OPTION_ID }} \
--silent