We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f61c91 commit 0f86afcCopy full SHA for 0f86afc
1 file changed
.github/workflows/manual-release.yml
@@ -3,6 +3,10 @@ name: Manual Release
3
on:
4
workflow_dispatch:
5
6
+permissions:
7
+ contents: write
8
+ pull-requests: write
9
+
10
jobs:
11
release:
12
name: Create Release PR
@@ -51,6 +55,18 @@ jobs:
51
55
NEW_VERSION=$(node -p "require('./packages/react-qr-code/package.json').version")
52
56
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
53
57
58
+ - name: Debug Changesets
59
+ run: |
60
+ echo "Contents of .changeset directory:"
61
+ ls -la .changeset/
62
+ echo "Content of heavy-moose-rush.md:"
63
+ cat .changeset/heavy-moose-rush.md
64
65
+ - name: Debug Git Status
66
67
+ git status
68
+ git diff
69
54
70
- name: Create PR
71
uses: changesets/action@v1
72
with:
0 commit comments