diff options
author | Evgeny Posenitskiy <45995097+q-posev@users.noreply.github.com> | 2022-01-05 18:26:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-05 18:26:35 +0100 |
commit | e7a8e22604f28f2bbc6ec87c1561b6c13b72fb0b (patch) | |
tree | 0f125afa749e6bba4c808d01d84f55382fd72392 | |
parent | c69ca2e5f95f0bce97422b821a6542f06c44d02d (diff) | |
download | numpy-e7a8e22604f28f2bbc6ec87c1561b6c13b72fb0b.tar.gz |
ENH: fix a typo in the example trigger for wheels
The `[cd build]` trigger in the example (line 6) does not correspond to the one that is actually used `[wheel build]` trigger (line 43). This might be confusing for newcomers.
-rw-r--r-- | .github/workflows/wheels.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index afebe7f93..b17b478ab 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -3,7 +3,7 @@ # # if: github.repository == 'numpy/numpy' # -# in the get_commit_message job. Be sure to include [cd build] in your commit +# in the get_commit_message job. Be sure to include [wheel build] in your commit # message to trigger the build. All files related to wheel building are located # at tools/wheels/ name: Wheel builder |