Skip to content

Commit 20edce0

Browse files
security: standardize secret scanning on TruffleHog (#33)
Standardizing on TruffleHog.
2 parents b3cc50d + 77849c0 commit 20edce0

72 files changed

Lines changed: 994 additions & 291 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/CLAUDE.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
## Machine-Readable Artefacts
26

37
The following files in `.machine_readable/` contain structured project metadata:
@@ -43,7 +47,7 @@ The following files in `.machine_readable/` contain structured project metadata:
4347
| Bun | Deno |
4448
| pnpm/yarn | Deno |
4549
| Go | Rust |
46-
| Python | Julia/Rust/ReScript |
50+
| Python | Julia/Rust/AffineScript |
4751
| Java/Kotlin | Rust/Tauri/Dioxus |
4852
| Swift | Tauri/Dioxus |
4953
| React Native | Tauri/Dioxus |
@@ -61,7 +65,7 @@ Both are FOSS with independent governance (no Big Tech).
6165
### Enforcement Rules
6266

6367
1. **No new TypeScript files** - Convert existing TS to AffineScript
64-
2. **No package.json for runtime deps** - Use deno.json imports
68+
2. **No package.json - use deno.json deps** - Use deno.json imports
6569
3. **No node_modules in production** - Deno caches deps automatically
6670
4. **No Go code** - Use Rust instead
6771
5. **No Python anywhere** - Use Julia for data/batch, Rust for systems, AffineScript for apps

.github/CODEOWNERS

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# SPDX-License-Identifier: MPL-2.0
2+
# CODEOWNERS - Define code review assignments for GitHub
3+
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
4+
5+
# Default: sole maintainer for all files
6+
* @hyperpolymath
7+
8+
# Security-sensitive files require explicit ownership
9+
SECURITY.md @hyperpolymath
10+
.github/workflows/ @hyperpolymath
11+
.machine_readable/ @hyperpolymath
12+
contractiles/ @hyperpolymath
13+
14+
# License files
15+
LICENSE @hyperpolymath
16+
LICENSES/ @hyperpolymath
17+
18+
# Configuration
19+
.gitignore @hyperpolymath
20+
.github/ @hyperpolymath
21+
22+
# Documentation
23+
README* @hyperpolymath
24+
CONTRIBUTING* @hyperpolymath
25+
CODE_OF_CONDUCT* @hyperpolymath
26+
GOVERNANCE* @hyperpolymath
27+
MAINTAINERS* @hyperpolymath
28+
CHANGELOG* @hyperpolymath
29+
ROADMAP* @hyperpolymath
30+
31+
# Build and CI
32+
Justfile @hyperpolymath
33+
Makefile @hyperpolymath
34+
*.sh @hyperpolymath

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
---
26
name: Bug report
37
about: Create a report to help us improve

.github/ISSUE_TEMPLATE/custom.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
---
26
name: Custom issue template
37
about: Describe this issue template's purpose here.

.github/ISSUE_TEMPLATE/documentation.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
---
26
name: Documentation
37
about: Report unclear, missing, or incorrect documentation

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
---
26
name: Feature request
37
about: Suggest an idea for this project

.github/ISSUE_TEMPLATE/question.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
---
26
name: Question
37
about: Ask a question about usage or behaviour

.github/TEST_CI_SHA.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# CI TEST: Hypatia SHA update
2+
# SPDX-License-Identifier: MPL-2.0
3+
# Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
5+
Test commit to verify Hypatia SHA update from 915139d7 to 6cd37728.
6+
7+
DELETE AFTER VERIFICATION.

.github/copilot/coding-agent.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mcp_servers:
2+
boj-server:
3+
command: npx
4+
args: ["-y", "@hyperpolymath/boj-server@latest"]
5+
env:
6+
BOJ_URL: http://localhost:7700

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# // Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
12
# SPDX-License-Identifier: MPL-2.0
23
# GitHub Actions CI/CD for SafeBruteForce
34
# Erlang/OTP + LFE project
@@ -26,6 +27,7 @@ jobs:
2627
build:
2728
name: Build
2829
runs-on: ubuntu-latest
30+
timeout-minutes: 10
2931

3032
steps:
3133
- name: Checkout code
@@ -66,6 +68,7 @@ jobs:
6668
test:
6769
name: Test (OTP ${{ matrix.otp }})
6870
runs-on: ubuntu-latest
71+
timeout-minutes: 10
6972
needs: build
7073

7174
strategy:
@@ -106,6 +109,7 @@ jobs:
106109
coverage:
107110
name: Test Coverage
108111
runs-on: ubuntu-latest
112+
timeout-minutes: 10
109113
needs: build
110114

111115
steps:
@@ -143,6 +147,7 @@ jobs:
143147
dialyzer:
144148
name: Dialyzer Static Analysis
145149
runs-on: ubuntu-latest
150+
timeout-minutes: 10
146151
needs: build
147152

148153
steps:
@@ -179,6 +184,7 @@ jobs:
179184
security:
180185
name: Security Checks
181186
runs-on: ubuntu-latest
187+
timeout-minutes: 10
182188

183189
steps:
184190
- name: Checkout code
@@ -210,6 +216,7 @@ jobs:
210216
rsr-compliance:
211217
name: RSR Framework Compliance
212218
runs-on: ubuntu-latest
219+
timeout-minutes: 10
213220

214221
steps:
215222
- name: Checkout code
@@ -270,6 +277,7 @@ jobs:
270277
docs:
271278
name: Build Documentation
272279
runs-on: ubuntu-latest
280+
timeout-minutes: 10
273281
needs: build
274282

275283
steps:
@@ -305,6 +313,7 @@ jobs:
305313
release:
306314
name: Create Release
307315
runs-on: ubuntu-latest
316+
timeout-minutes: 10
308317
needs: [test, coverage, security, rsr-compliance]
309318
if: startsWith(github.ref, 'refs/tags/v')
310319

@@ -339,6 +348,7 @@ jobs:
339348
notify:
340349
name: Notify on Failure
341350
runs-on: ubuntu-latest
351+
timeout-minutes: 10
342352
needs: [test, coverage, security, rsr-compliance]
343353
if: failure()
344354

0 commit comments

Comments
 (0)