Skip to content

Commit

Permalink
chore: fix typos in the release audit workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Beemer <[email protected]>
  • Loading branch information
beeme1mr authored and toddbaert committed Jan 11, 2024
1 parent 3044fa5 commit 7a4cb82
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/audit-pending-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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 }}

0 comments on commit 7a4cb82

Please sign in to comment.