We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da4f901 commit 8c4dc39Copy full SHA for 8c4dc39
.github/workflows/open-release-pr.yml
@@ -50,12 +50,13 @@ jobs:
50
yarn version ${{ inputs.release_type }}
51
VERSION=$(node -p "require('./package.json').version")
52
echo "version=$VERSION" >> $GITHUB_OUTPUT
53
+
54
+ - name: Run tests on release changes
55
+ run: yarn verify
56
57
- name: Create PR with release changes
58
id: cpr
59
uses: peter-evans/create-pull-request@v7
- env:
- HUSKY: 0
60
with:
61
# branch name is unique per run
62
branch: "release/v${{ steps.release.outputs.version }}_${{ github.run_id }}"
0 commit comments