Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(release): auto create release PR #3453

Merged
merged 2 commits into from
Jan 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/turborepo-release-step-3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,16 @@ jobs:
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

# TODO: probably don't need to upload this once we've verified the snapshots
# Upload published artifacts in case they are needed for debugging later
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: turbo-combined
path: cli/dist

- name: Open Pull Request for release branch
uses: peter-evans/create-pull-request@v4
with:
title: "feat(turborepo): release"
branch: "${{ inputs.release_branch }}"
base: main
4 changes: 1 addition & 3 deletions cli/internal/packagemanager/fixtures/pnpm-patches.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
"name": "turborepo-prune-removes-patched",
"version": "1.0.0",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"workspaces": ["packages/*"],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this fix the node linting failure I've been seeing in CI? (meant to get into it this morning)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep!

"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
Expand Down