Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/interface.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,14 @@ jobs:
env:
SCRIPT: ${{ matrix.script }}
PREFIX: ${{ matrix.prefix }}
BASIS: ${{ matrix.basis }}
run: |
python3 << 'PYEOF'
import os, re, textwrap

script = os.environ["SCRIPT"]
prefix = os.environ["PREFIX"]
basis = os.environ["BASIS"]

# ── 1. Patch the example script ────────────────────────
with open(script) as f:
Expand Down
11 changes: 11 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,17 @@ The repository text files have been normalized to LF once. Day-to-day line
ending enforcement should rely on staged/changed-file hooks and CI; rerun the
full mixed-line-ending hook only for intentional repository-wide normalization.

## Upstream Repository

- Repository: https://github.com/deepmodeling/abacus-develop
- Issues: https://github.com/deepmodeling/abacus-develop/issues
- Pull requests: https://github.com/deepmodeling/abacus-develop/pulls
- Upstream PRs are opened from personal fork branches
(`<fork-owner>:<branch>` into `develop`).
- `workflow_dispatch`-only workflows (e.g. `.github/workflows/interface.yml`)
are not triggered by push/PR events; PR CI cannot verify such fixes, so
state "manual dispatch run required" in the PR verification notes.

## PR Self-Check

- Confirm the PR body states exact commands run, whether they passed or failed,
Expand Down
Loading