Skip to content

Commit ec027dc

Browse files
build(deps): bump jws from 3.2.2 to 3.2.3 [skip ci] (#453)
* build(deps): bump jws from 3.2.2 to 3.2.3 Bumps [jws](https://github.com/brianloveswords/node-jws) from 3.2.2 to 3.2.3. - [Release notes](https://github.com/brianloveswords/node-jws/releases) - [Changelog](https://github.com/auth0/node-jws/blob/master/CHANGELOG.md) - [Commits](auth0/node-jws@v3.2.2...v3.2.3) --- updated-dependencies: - dependency-name: jws dependency-version: 3.2.3 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * bump @linearb/gitstream-core to 2.1.231 * build(deps): update bump-gitstream-core workflow to handle reviewer input and output PR URL * fix: use CI_ACCOUNT_PAT instead of CI_USER_GIT_TOKEN * fix: revert to github.token * fix: remove token usage in checkout step and update reviewer assignment logic --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Misha Kav <[email protected]>
1 parent cff7d59 commit ec027dc

File tree

3 files changed

+28
-14
lines changed

3 files changed

+28
-14
lines changed

.github/workflows/bump-gitstream-core.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ jobs:
6060
run: npm run all
6161

6262
- name: Create PR for ${{ env.VERSION }}
63+
id: create-pr
6364
env:
6465
GH_TOKEN: ${{ github.token }}
6566
run: |
@@ -69,8 +70,16 @@ jobs:
6970
git add package.json package-lock.json dist/index.js
7071
git commit -m "bump @linearb/gitstream-core to ${{ env.VERSION }}"
7172
git push origin HEAD:${{ env.BRANCH_NAME }}
72-
gh pr create \
73+
PR_URL=$(gh pr create \
7374
--base develop \
74-
--title "Bump \`@linearb/gitstream-core\` to \`${{ env.VERSION }}\`" \
75+
--title 'Bump `@linearb/gitstream-core` to `${{ env.VERSION }}`' \
7576
--body-file pr_description.txt \
76-
--head ${{ env.BRANCH_NAME }} ${{ env.REVIEWER_ARG }} ${{ env.LABEL_ARG }}
77+
--head ${{ env.BRANCH_NAME }} ${{ env.REVIEWER_ARG }} ${{ env.LABEL_ARG }})
78+
echo "pr_url=$PR_URL" >> $GITHUB_OUTPUT
79+
80+
- name: Output PR URL
81+
if: success()
82+
run: |
83+
echo "✅ PR created successfully: ${{ steps.create-pr.outputs.pr_url }}"
84+
echo "**✅ PR Created**" >> $GITHUB_STEP_SUMMARY
85+
echo "${{ steps.create-pr.outputs.pr_url }}" >> $GITHUB_STEP_SUMMARY

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 15 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)