Rename "prepare" script to "curate" to prevent auto-runs #914
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The
prepare
script is run automatically when the repository is installed. On top of creating issues when the repository is set as dependency in another project for some reason, as described in #789 (comment), this also seems wrong because:npm install github:w3c/webref
may fail from time to time.This update replaces the "prepare" script with a "curate" one, explicitly called by the jobs that need it.
I don't know if other projects depend on the
w3c/webref
repository directly. If they do and need to access curated data, they would need to update to callnpm run curate
explicitly.