Skip to content

Commit 7633d39

Browse files
Merge branch 'main' into chore/clade-status-backfill
2 parents c62e275 + c3bae9f commit 7633d39

52 files changed

Lines changed: 251 additions & 212 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- SPDX-License-Identifier: MPL-2.0 -->
1+
<!-- SPDX-License-Identifier: CC-BY-SA-4.0 -->
22
<!-- SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk> -->
33
# Panic Attack - Project Instructions
44

.github/workflows/governance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: PMPL-1.0-or-later
1+
# SPDX-License-Identifier: MPL-2.0
22
name: Governance
33

44
on:

.github/workflows/hypatia-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: PMPL-1.0-or-later
1+
# SPDX-License-Identifier: MPL-2.0
22
name: Hypatia Security Scan
33

44
on:
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# SPDX-License-Identifier: MPL-2.0
2+
# Dormant push-email notification. ARMED by setting the repo variable
3+
# PUSH_EMAIL_ENABLED=true (the single on/off switch). Addresses are pre-filled;
4+
# sending needs the org SMTP secrets (SMTP_HOST/PORT/USER/PASS). Inherited by
5+
# new repos from the template; placed on existing repos by the farm sweep.
6+
name: Push email notification
7+
on:
8+
push: {}
9+
permissions:
10+
contents: read
11+
jobs:
12+
notify:
13+
name: Email on push
14+
if: ${{ vars.PUSH_EMAIL_ENABLED == 'true' }}
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Send push notification email
18+
uses: dawidd6/action-send-mail@6e502825a508b867ab2954ad6343b68787624c01 # pinned
19+
with:
20+
server_address: ${{ secrets.SMTP_HOST }}
21+
server_port: ${{ secrets.SMTP_PORT }}
22+
secure: true
23+
username: ${{ secrets.SMTP_USER }}
24+
password: ${{ secrets.SMTP_PASS }}
25+
from: "GitHub Push <${{ secrets.SMTP_USER }}>"
26+
to: "jonathan.jewell@gmail.com j.d.a.jewell@open.ac.uk"
27+
subject: "[${{ github.repository }}] push to ${{ github.ref_name }} by ${{ github.actor }}"
28+
body: |
29+
Repository: ${{ github.repository }}
30+
Branch: ${{ github.ref_name }}
31+
Pusher: ${{ github.actor }}
32+
Compare: ${{ github.event.compare }}
33+
Head msg: ${{ github.event.head_commit.message }}

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: PMPL-1.0-or-later
1+
# SPDX-License-Identifier: MPL-2.0
22
name: OSSF Scorecard
33

44
on:

.machine_readable/agent_instructions/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: MPL-2.0
1+
// SPDX-License-Identifier: CC-BY-SA-4.0
22
// SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
33
// Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
44
= Agent Instructions

.machine_readable/svc/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: MPL-2.0
1+
// SPDX-License-Identifier: CC-BY-SA-4.0
22
// SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
33
= `.machine_readable/svc/` — Service components for panic-attack
44
:toc:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- SPDX-License-Identifier: MPL-2.0 -->
1+
<!-- SPDX-License-Identifier: CC-BY-SA-4.0 -->
22
<!-- SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk> -->
33
# Changelog
44

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- SPDX-License-Identifier: MPL-2.0 -->
1+
<!-- SPDX-License-Identifier: CC-BY-SA-4.0 -->
22
<!-- SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk> -->
33
# Code of Conduct
44

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- SPDX-License-Identifier: MPL-2.0 -->
1+
<!-- SPDX-License-Identifier: CC-BY-SA-4.0 -->
22
<!-- SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk> -->
33
# Contributing to panic-attack
44

0 commit comments

Comments
 (0)