Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
daGscheid committed Sep 24, 2024
2 parents 000d59b + 04cc9ae commit d762542
Show file tree
Hide file tree
Showing 5 changed files with 103 additions and 282 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/doc-enhancement.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 📚 Doc Enhancement
description: Suggest an improvement or addition to existing documentation
title: "[Doc-Enhancement]: "
labels: ["doc-enhancement"]
labels: ["doc enhancement"]
body:
- type: markdown
attributes:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/new-docs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 🆕 New Documentation
description: Propose new documents or sections to be added
title: "[New-Docs]: "
labels: ["new-docs"]
labels: ["new docs"]
body:
- type: markdown
attributes:
Expand Down
17 changes: 15 additions & 2 deletions .github/workflows/add_issue_to_project_task_board.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,18 +110,31 @@ jobs:
id
}
}
}' -f projectId=$PROJECT_ID -f projectItemId=$PROJECT_ITEM_ID -f fieldId=$MAIN_TASK_FIELD_ID -f value="Documentation"
}' -f projectId=$PROJECT_ID -f projectItemId=$PROJECT_ITEM_ID -f fieldId=$MAIN_TASK_FIELD_ID -f value="Documentation - Stereum"
fi
if [ -n "$SUB_TASK_FIELD_ID" ]; then
LABEL_NAME="${{ github.event.issue.labels[0].name }}"
if [[ "$LABEL_NAME" == "doc enhancement" ]]; then
SUB_TASK_NAME="Documentation - Stereum | Doc Enhancement"
elif [[ "$LABEL_NAME" == "fix" ]]; then
SUB_TASK_NAME="Documentation - Stereum | Fix"
elif [[ "$LABEL_NAME" == "new docs" ]]; then
SUB_TASK_NAME="Documentation - Stereum | New Docs"
elif [[ "$LABEL_NAME" == "translation" ]]; then
SUB_TASK_NAME="Documentation - Stereum | Translation"
else
SUB_TASK_NAME="Documentation - Stereum | General"
fi
gh api graphql -f query='
mutation($projectId: ID!, $projectItemId: ID!, $fieldId: ID!, $value: String!) {
updateProjectV2ItemFieldValue(input: {projectId: $projectId, itemId: $projectItemId, fieldId: $fieldId, value: {text: $value}}) {
projectV2Item {
id
}
}
}' -f projectId=$PROJECT_ID -f projectItemId=$PROJECT_ITEM_ID -f fieldId=$SUB_TASK_FIELD_ID -f value="Stereum Documentation"
}' -f projectId=$PROJECT_ID -f projectItemId=$PROJECT_ITEM_ID -f fieldId=$SUB_TASK_FIELD_ID -f value="$SUB_TASK_NAME"
fi
if [ -n "$STATUS_FIELD_ID" ] && [ -n "$BACKLOG_OPTION_ID" ]; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ During the One-Click Installation process, you will choose your use case based o
- [SSV Network Guide](../01-use-case-guides/03-node-operator/ssv-network/01-ssv-network-node-operator.md)

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

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

0 comments on commit d762542

Please sign in to comment.