Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@nerdwallet/shepherd
Advanced tools
Shepherd is a utility for applying code changes across many repositories.
jscodeshift
, or scripts in your preferred programming language.For more high level context, this blog post covers the basics.
Install the Shepherd CLI:
npm install -g @nerdwallet/shepherd
If using GitHub Enterprise, ensure the following environment variable is exported:
export SHEPHERD_GITHUB_ENTERPRISE_URL={company_github_enterprise_url} # e.g., github.test.com
If using ssh, ensure that your GITHUB_TOKEN is exported:
export GITHUB_TOKEN=<PAT>
Shepherd will now be available as the shepherd
command in your shell:
shepherd --help
Usage: shepherd [options] [command]
...
Take a look at the tutorial for a detailed walkthrough of what Shepherd does and how it works, or read on for a higher-level and more brief look!
Moving away from monorepos and monolithic applications has generally been a good thing for developers because it allows them to move quickly and independently from each other. However, it's easy to run into problems, especially if your code relies on shared libraries. Specifically, making a change to shared code and then trying to roll that shared code out to all consumers of that code becomes difficult:
Shepherd aims to help shift responsibility for the first three steps to the person actually making the change to the library. Since they have the best understanding of their change, they can write a code migration to automate that change and then user Shepherd to automate the process of applying that change to all relevant repos. Then the owners of the affected repos (who have the best understanding of their own code) can review and merge the changes. This process is especially efficient for teams who rely on continuous integration: automated tests can help repository owners have confidence that the code changes are working as expected.
A migration is declaratively specified with a shepherd.yml
file called a spec. Here's an example of a migration spec that renames .eslintrc
to .eslintrc.json
in all NerdWallet repositories that have been modified in 2018:
id: 2018.07.16-eslintrc-json
title: Rename all .eslintrc files to .eslintrc.json
adapter:
type: github
search_type: code
search_query: org:NerdWallet path:/ filename:.eslintrc
hooks:
should_migrate:
- ls .eslintrc # Check that this file actually exists in the repo
- git log -1 --format=%cd | grep 2018 --silent # Only migrate things that have seen commits in 2018
post_checkout: npm install
apply: mv .eslintrc .eslintrc.json
pr_message: echo 'Hey! This PR renames `.eslintrc` to `.eslintrc.json`'
Let's go through this line-by-line:
id
specifies a unique identifier for this migration. It will be used as a branch name for this migration, and will be used internally by Shepherd to track state about the migration.title
specifies a human-readable title for the migration that will be used as the commit message.adapter
specifies what version control adapter should be used for performing operations on repos, as well as extra options for that adapter. Currently Shepherd only has a GitHub adapter, but you could create a Bitbucket or GitLab adapter if you don't use GitHub. Note that search_query
is specific to the GitHub adapter: it uses GitHub's code search qualifiers to identify repositories that are candidates for a migration. If a repository contains a file matching the search, it will be considered a candidate for this migration. As an alternative to search_query
, GitHub adapter can be configured with org: YOURGITHUBORGANIZATION
. When using org
, every repo in the organization that is visible will be considered as a candidate for this migration.
search_type
(optional): specifies search type - either 'code' or 'repositories'. If repositories is specified, it does a Github repository search. Defaults to code search if not specified.The options under hooks
specify the meat of a migration. They tell Shepherd how to determine if a repo should be migrated, how to actually perform the migration, how to generate a pull request message for each repository, and more. Each hook consists of one or more standard executables that Shepherd will execute in sequence.
should_migrate
is a sequence of commands to execute to determine if a repo actually requires a migration. If any of them exit with a non-zero value, that signifies to Shepherd that the repo should not be migrated. For instance, the second step in the above should_migrate
hook would fail if the repo was last modified in 2017, since grep
would exit with a non-zero value.post_checkout
is a sequence of commands to be executed once a repo has been checked out and passed any should_migrate
checks. This is a convenient place to do anything that will only need to be done once per repo, such as installing any dependencies.apply
is a sequence of commands that will actually execute the migration. This example is very simple: we're just using mv
to rename a file. However, this hook could contain arbitrarily many, potentially complex commands, depending on the requirements of your particular migration.pr_message
is a sequence of commands that will be used to generate a pull request message for a repository. In the simplest case, this can just be a static message, but you could also programmatically generate a message that calls out particular things that might need human attention. Anything written to stdout
will be used for the message. If multiple commands are specified, the output from each one will be concatenated together.should_migrate
and post_checkout
are optional; apply
and pr_message
are required.
Each of these commands will be executed with the working directory set to the target repository. Shepherd exposes some context to each command via specific environment variables. Some additional enviornment variables are exposed when using the git
or github
adapters.
SHEPHERD_REPO_DIR
is the absolute path to the repository being operated on. This will be the working directory when commands are executed.
SHEPHERD_DATA_DIR
is the absolute path to a special directory that can be used to persist state between steps. This would be useful if, for instance, a jscodeshift
codemod in your apply
hook generates a list of files that need human attention and you want to use that list in your pr_message
hook.
SHEPHERD_BASE_BRANCH
is the name of the branch Shepherd will set up a pull-request against. This will often, but not always, be master. Only available for apply
and later steps.
SHEPHERD_MIGRATION_DIR
is the absolute path to the directory containing your migration's shepherd.yml
file. This is useful if you want to include a script with your migration spec and need to reference that command in a hook. For instance, if I have a script pr.sh
that will generate a PR message: my pr_message
hook might look something like this:
pr_message: $SHEPHERD_MIGRATION_DIR/pr.sh
SHEPHERD_GIT_REVISION
(git
and github
adapters) is the current revision of the repository being operated on.
SHEPHERD_GITHUB_REPO_OWNER
(github
adapter) is the owner of the repository being operated on. For example, if operating on the repository https://github.com/NerdWalletOSS/shepherd
, this would be NerdWalletOSS
.
SHEPHERD_GITHUB_REPO_NAME
(github
adapter) is the name of the repository being operated on. For example, if operating on the repository https://github.com/NerdWalletOSS/shepherd
, this would be shepherd
.
Commands follow standard Unix conventions: an exit code of 0 indicates a command succeeded, a non-zero exit code indicates failure.
Shepherd is run as follows:
shepherd <command> <migration> [options]
<migration>
is the path to your migration directory containing a shepherd.yml
file.
There are a number of commands that must be run to execute a migration:
checkout
: Determines which repositories are candidates for migration and clones or updates the repositories on your machine. Clones are "shallow", containing no git history. Uses should_migrate
to decide if a repository should be kept after it's checked out.apply
: Performs the migration using the apply
hook discussed above.commit
: Makes a commit with any changes that were made during the apply
step, including adding newly-created files. The migration's title
will be prepended with [shepherd]
and used as the commit message.push
: Pushes all commits to their respective repositories.pr-preview
: Prints the commit message that would be used for each repository without actually creating a PR; uses the pr_message
hook.pr
: Creates a PR for each repo with the message generated from the pr_message
hook.version
: Prints Shepherd versionBy default, checkout
will use the adapter to figure out which repositories to check out, and the remaining commands will operate on all checked-out repos. To only checkout a specific repo or to operate on only a subset of the checked-out repos, you can use the --repos
flag, which specifies a comma-separated list of repos:
shepherd checkout path/to/migration --repos facebook/react,google/protobuf
Run shepherd --help
to see all available commands and descriptions for each one.
Run yarn
to install dependencies.
Shepherd is written in TypeScript, which requires compilation to JavaScript. When developing Shepherd, it's recommended to run yarn build:watch
in a separate terminal. This will incrementally compile the source code as you edit it. You can then invoke the Shepherd CLI by referencing the absolute path to the compiled cli.js
file:
cd ../my-other-project
../shepherd/lib/cli.js checkout path/to/migration
Shepherd currently has minimal test coverage, but we're aiming to improve that with each new PR. Tests are written with Jest and should be named in a *.test.ts
alongside the file under test. To run the test suite, run yarn test
.
We use ESLint to ensure a consistent coding style and to help prevent certain classes of problems. Run yarn lint
to run the linter, and yarn fix-lint
to automatically fix applicable problems.
FAQs
A utility for applying code changes across many repositories
The npm package @nerdwallet/shepherd receives a total of 27 weekly downloads. As such, @nerdwallet/shepherd popularity was classified as not popular.
We found that @nerdwallet/shepherd demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.