Skip to content

Commit d762542

Browse files
committed
2 parents 000d59b + 04cc9ae commit d762542

File tree

5 files changed

+103
-282
lines changed

5 files changed

+103
-282
lines changed

.github/ISSUE_TEMPLATE/doc-enhancement.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 📚 Doc Enhancement
22
description: Suggest an improvement or addition to existing documentation
33
title: "[Doc-Enhancement]: "
4-
labels: ["doc-enhancement"]
4+
labels: ["doc enhancement"]
55
body:
66
- type: markdown
77
attributes:

.github/ISSUE_TEMPLATE/new-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 🆕 New Documentation
22
description: Propose new documents or sections to be added
33
title: "[New-Docs]: "
4-
labels: ["new-docs"]
4+
labels: ["new docs"]
55
body:
66
- type: markdown
77
attributes:

.github/workflows/add_issue_to_project_task_board.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,18 +110,31 @@ jobs:
110110
id
111111
}
112112
}
113-
}' -f projectId=$PROJECT_ID -f projectItemId=$PROJECT_ITEM_ID -f fieldId=$MAIN_TASK_FIELD_ID -f value="Documentation"
113+
}' -f projectId=$PROJECT_ID -f projectItemId=$PROJECT_ITEM_ID -f fieldId=$MAIN_TASK_FIELD_ID -f value="Documentation - Stereum"
114114
fi
115115
116116
if [ -n "$SUB_TASK_FIELD_ID" ]; then
117+
LABEL_NAME="${{ github.event.issue.labels[0].name }}"
118+
if [[ "$LABEL_NAME" == "doc enhancement" ]]; then
119+
SUB_TASK_NAME="Documentation - Stereum | Doc Enhancement"
120+
elif [[ "$LABEL_NAME" == "fix" ]]; then
121+
SUB_TASK_NAME="Documentation - Stereum | Fix"
122+
elif [[ "$LABEL_NAME" == "new docs" ]]; then
123+
SUB_TASK_NAME="Documentation - Stereum | New Docs"
124+
elif [[ "$LABEL_NAME" == "translation" ]]; then
125+
SUB_TASK_NAME="Documentation - Stereum | Translation"
126+
else
127+
SUB_TASK_NAME="Documentation - Stereum | General"
128+
fi
129+
117130
gh api graphql -f query='
118131
mutation($projectId: ID!, $projectItemId: ID!, $fieldId: ID!, $value: String!) {
119132
updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $projectItemId, fieldId: $fieldId, value: {text: $value}}) {
120133
projectV2Item {
121134
id
122135
}
123136
}
124-
}' -f projectId=$PROJECT_ID -f projectItemId=$PROJECT_ITEM_ID -f fieldId=$SUB_TASK_FIELD_ID -f value="Stereum Documentation"
137+
}' -f projectId=$PROJECT_ID -f projectItemId=$PROJECT_ITEM_ID -f fieldId=$SUB_TASK_FIELD_ID -f value="$SUB_TASK_NAME"
125138
fi
126139
127140
if [ -n "$STATUS_FIELD_ID" ] && [ -n "$BACKLOG_OPTION_ID" ]; then

docs/02-guides/02-installation/00-installation-options/01-one-click-installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ During the One-Click Installation process, you will choose your use case based o
3030
- [SSV Network Guide](../01-use-case-guides/03-node-operator/ssv-network/01-ssv-network-node-operator.md)
3131

3232
- **Archive**: Create an archive node that maintains the complete history of the Ethereum blockchain - **Guide is currently work in progress**
33-
- [Archive Node Guide](../02-blockchain-data/01-installation-archive-node.md)
33+
- [Archive Node Guide](../01-use-case-guides/02-blockchain-data/01-installation-archive-node.md)
3434

3535
- **Obol**: Install a node to participate in the Obol Network, designed for distributed validator technology - **Guide is currently work in progress**
3636
- [Obol Network Guide](../01-use-case-guides/01-staking/00-ethereum/04-obol-clustered-ethereum-solo-staking.md)

0 commit comments

Comments
 (0)