This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
---
|
||||
name: Challenge a passage
|
||||
about: Supply evidence or context about a specific published passage
|
||||
title: "Challenge: "
|
||||
labels:
|
||||
- editorial-challenge
|
||||
---
|
||||
|
||||
<!-- Do not include private correspondence, personal data, confidential documents, or source identities. Use the private contact route for sensitive material. -->
|
||||
|
||||
## Published item and exact passage
|
||||
|
||||
Link to the item and quote only the passage being challenged.
|
||||
|
||||
## Type
|
||||
|
||||
- [ ] Source needed
|
||||
- [ ] Source does not support the claim
|
||||
- [ ] Material context missing
|
||||
- [ ] Potential conflict of interest
|
||||
- [ ] Outdated
|
||||
- [ ] Subject disputes the account
|
||||
- [ ] Technical description may be incorrect
|
||||
|
||||
## Objection
|
||||
|
||||
Explain what is wrong, incomplete, or liable to mislead.
|
||||
|
||||
## Supporting basis
|
||||
|
||||
Link primary sources where possible. First-hand testimony is welcome; describe what you directly know and what you are inferring.
|
||||
|
||||
## Publication and safety
|
||||
|
||||
State whether your name and submission may be quoted publicly. If disclosure could create risk, stop and use the private contact route instead.
|
||||
@@ -0,0 +1,21 @@
|
||||
name: validate
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
validate:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 24
|
||||
cache: npm
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Validate content and build
|
||||
run: npm run validate
|
||||
Reference in New Issue
Block a user