Skip to content

Commit ebccdff

Browse files
committed
Simplify names
1 parent 9b8ea98 commit ebccdff

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/standalone_push_changes.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,20 +74,20 @@ jobs:
7474
timeout-minutes: 15
7575

7676
# Retrieve list of changed stdlib packages in a push or pull request:
77-
- name: 'Retrieve list of changed stdlib packages'
78-
id: 'changed-packages'
79-
uses: stdlib-js/changed-packages-action@v1
77+
- name: 'Find changed packages'
78+
id: 'changed_packages'
79+
uses: stdlib-js/changed_packages-action@v1
8080
with:
8181
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8282

8383
# Push changes to the packages' repositories:
84-
- name: 'Push changes to packages'
85-
if: ${{ steps.changed-packages.outputs.packages != '[]' }}
84+
- name: 'Push changes'
85+
if: ${{ steps.changed_packages.outputs.packages != '[]' }}
8686
env:
8787
GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }}
8888
run: |
89-
echo "Pushing changes to the following repositories: ${{ steps.changed-packages.outputs.packages }}"
90-
node lib/node_modules/@stdlib/_tools/scripts/publish_packages.js ${{ join( fromJSON( steps.changed-packages.outputs.packages ), ' ' ) }}
89+
echo "Pushing changes to the following repositories: ${{ steps.changed_packages.outputs.packages }}"
90+
node lib/node_modules/@stdlib/_tools/scripts/publish_packages.js ${{ join( fromJSON( steps.changed_packages.outputs.packages ), ' ' ) }}
9191
9292
# Define a job for sending notifications to Slack...
9393
slack:

0 commit comments

Comments
 (0)