-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix typos in the release audit workflow
Signed-off-by: Michael Beemer <[email protected]>
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
with: | ||
ref: ${{ github.event.ref }} | ||
|
||
# if this is an SDK release, make sure there's no pending releases for @openfeature/core | ||
# if this is an SDK release, make sure there are no pending releases for @openfeature/core | ||
- name: Check for Pending Dependency PRs | ||
if: ${{ !endsWith(github.ref_name, env.CORE_PACKAGE) }} | ||
run: | | ||
|
@@ -39,11 +39,11 @@ jobs: | |
run: | | ||
npm run update-core-peers && \ | ||
! git diff-files --quiet && \ | ||
( echo 'Updated peer dependency in dependants, commiting...' | ||
( echo 'Updated peer dependency in dependents, committing...' | ||
git add --all && \ | ||
git config user.name "openfeature-peer-update-bot" && \ | ||
git config user.email "[email protected]" && \ | ||
git commit -m 'fix: bump @openfeaure/${{ env.CORE_PACKAGE }} peer' -s && \ | ||
git push ) || echo 'Peer dependency in dependants is already up to date.' | ||
git commit -m 'fix: bump @openfeature/${{ env.CORE_PACKAGE }} peer' -s && \ | ||
git push ) || echo 'Peer dependency in dependents is already up to date.' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |