-
Notifications
You must be signed in to change notification settings - Fork 1
Tell a delegating audit domain to block, not end its turn #700
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -21,6 +21,11 @@ set -euo pipefail | |||||||||||||||||||||
| cd "$(dirname "$0")/.." | ||||||||||||||||||||||
| AUDIT_DIR=.github/audit | ||||||||||||||||||||||
| export GITHUB_REPOSITORY="${GITHUB_REPOSITORY:-diffplug/dormouse}" | ||||||||||||||||||||||
| # `_preamble.md`'s delegate wait persists its deadline under `$RUNNER_TEMP`, | ||||||||||||||||||||||
| # which only Actions sets. A fresh directory per run gives a hand-run the same | ||||||||||||||||||||||
| # property CI has — nothing from the last run survives into this one — where a | ||||||||||||||||||||||
| # repo-root fallback would hand the next run an expired deadline. | ||||||||||||||||||||||
|
Comment on lines
+24
to
+27
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||
| export RUNNER_TEMP="${RUNNER_TEMP:-$(mktemp -d)}" | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| if ! command -v claude >/dev/null 2>&1; then | ||||||||||||||||||||||
| echo "error: the \`claude\` CLI is not on PATH." >&2 | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
Uh oh!
There was an error while loading. Please reload this page.