Skip to content

Commit f96523d

Browse files
authored
Merge pull request #3 from bsv-blockchain/feat/go-live
[FEAT] Go live - mods and updates
2 parents e2d8066 + 280d5d4 commit f96523d

File tree

11 files changed

+14
-153
lines changed

11 files changed

+14
-153
lines changed

.github/AGENTS.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ delivery and open-source collaboration from day one.
5858

5959
For more detailed guidance and supporting documentation, refer to the following project-level resources:
6060

61-
* `CITATION.cff` — Metadata for citing this project; GitHub uses it to render citation information
6261
* `CODEOWNERS` - Ownership of the repository and various directories
6362
* `CODE_OF_CONDUCT.md` — Expected behavior and enforcement
6463
* `CODE_STANDARDS.md` — Style guides and best practices
@@ -747,8 +746,7 @@ This section tracks notable updates to `AGENTS.md`, including the date, author,
747746
All contributors are expected to append entries here when making meaningful changes to agent behavior, conventions, or policies.
748747

749748

750-
| Date | Author | Summary of Changes |
751-
|------------|----------|--------------------------------------------------------------|
752-
| 2025-06-30 | @mrz1836 | Added pre-commit hook guidelines and config reference |
753-
| 2025-06-27 | @mrz1836 | Adapted to fix this project go-subtree |
749+
| Date | Author | Summary of Changes |
750+
|------------|----------|----------------------------------------|
751+
| 2025-07-01 | @mrz1836 | Adapted to fix this project go-subtree |
754752
> For minor edits (typos, formatting), this log update is optional. For all behavioral or structural changes, log entries are **required**.

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Report incorrect behavior, test failure, or unexpected output in th
33
title: "[Bug] <brief description of the issue>"
44
labels: ["bug-p3"]
55
assignees:
6-
- bsv-blockchain/Teranode
6+
- icellan
77
body:
88
- type: textarea
99
id: bug_description

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Suggest an idea or improvement for this project
33
title: "[Feature] <brief description of feature>"
44
labels: ["idea"]
55
assignees:
6-
- bsv-blockchain/Teranode
6+
- icellan
77
body:
88
- type: textarea
99
id: problem_description

.github/ISSUE_TEMPLATE/question.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: General template for asking a question related to this project
33
title: "[Question] <your topic here>"
44
labels: ["question"]
55
assignees:
6-
- bsv-blockchain/Teranode
6+
- icellan
77
body:
88
- type: textarea
99
id: question

.github/dependabot.yml

Lines changed: 4 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Repo: bsv-blockchain/<repo>
44
#
55
# Purpose:
6-
# • Keep Go modules, GitHub Actions, DevContainer images/features, and Docker
6+
# • Keep Go modules, GitHub Actions, and DevContainer images/features
77
# base images up‑to‑date with zero‑day security patches and semantic‑version
88
# upgrades.
99
# • Reduce attack surface by limiting outdated dependencies.
@@ -43,7 +43,7 @@ updates:
4343
gomod-minor-patch:
4444
update-types: ["minor", "patch"]
4545
open-pull-requests-limit: 10
46-
assignees: ["bsv-blockchain/Teranode"]
46+
assignees: ["icellan"]
4747
labels: ["chore", "dependencies", "gomod"]
4848
commit-message:
4949
prefix: "chore(deps)"
@@ -71,7 +71,7 @@ updates:
7171
ghactions-all:
7272
patterns: ["*"]
7373
open-pull-requests-limit: 10
74-
assignees: ["bsv-blockchain/Teranode"]
74+
assignees: ["icellan"]
7575
labels: ["chore", "dependencies", "github-actions"]
7676
commit-message:
7777
prefix: "chore(deps)"
@@ -94,34 +94,8 @@ updates:
9494
devcontainer-all:
9595
patterns: ["*"]
9696
open-pull-requests-limit: 5
97-
assignees: ["bsv-blockchain/Teranode"]
97+
assignees: ["icellan"]
9898
labels: ["chore", "dependencies", "devcontainer"]
9999
commit-message:
100100
prefix: "chore(deps)"
101101
include: "scope"
102-
103-
# ──────────────────────────────────────────────────────────────
104-
# 4. Dockerfiles (any Dockerfile in repo root or sub‑dirs)
105-
# ──────────────────────────────────────────────────────────────
106-
- package-ecosystem: "docker"
107-
directory: "/"
108-
target-branch: "master"
109-
schedule:
110-
interval: "weekly"
111-
day: "monday"
112-
time: "09:45"
113-
timezone: "America/New_York"
114-
allow:
115-
- dependency-type: "direct"
116-
ignore:
117-
- dependency-name: "alpine"
118-
- dependency-name: "scratch"
119-
groups:
120-
dockerfiles-all:
121-
patterns: ["*"]
122-
open-pull-requests-limit: 5
123-
assignees: ["bsv-blockchain/Teranode"]
124-
labels: ["chore", "dependencies", "docker"]
125-
commit-message:
126-
prefix: "chore(deps)"
127-
include: "scope"

.github/labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@
5959
description: "Used for referencing DevContainers"
6060
color: 006b75
6161
- name: "docker"
62-
description: "Used for referencing Docker"
62+
description: "Used for referencing Docker files"
6363
color: 006b75
File renamed without changes.

.github/workflows/update-pip-requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# Triggers: Runs every Monday at 08:20 UTC and can be triggered manually.
88
#
9-
# Maintainer: @mrz1836
9+
# Maintainer: @icellan
1010
# ------------------------------------------------------------------------------
1111

1212
name: update-pip-requirements

CITATION.cff

Lines changed: 0 additions & 29 deletions
This file was deleted.

Dockerfile

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)