diff --git a/.github/workflows/audit-pending-releases.yml b/.github/workflows/audit-pending-releases.yml index d100296510..c74585672a 100644 --- a/.github/workflows/audit-pending-releases.yml +++ b/.github/workflows/audit-pending-releases.yml @@ -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 "openfeature-peer-update-bot@openfeature.dev" && \ - 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 }}