We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c0dabdd + 9784470 commit 164e163Copy full SHA for 164e163
.github/workflows/auto-bumper.yml
@@ -47,6 +47,13 @@ jobs:
47
core.setFailed(`Unsupported event: ${eventName}. Use issue_comment or pull_request_review_comment.`);
48
}
49
50
+ - name: Checkout
51
+ uses: actions/checkout@v4
52
+ with:
53
+ ref: ${{ github.event.pull_request.head.ref }}
54
+ fetch-depth: 0
55
+ token: ${{ secrets.GITHUB_TOKEN }}
56
+
57
- name: Add comment to PR
58
uses: actions/github-script@v7
59
with:
@@ -60,13 +67,6 @@ jobs:
60
67
body: `Okay boss, ⏳ Bumping version to ${pkg.version}...`
61
68
})
62
69
63
- - name: Checkout
64
- uses: actions/checkout@v4
65
- with:
66
- ref: ${{ github.event.pull_request.head.ref }}
- fetch-depth: 0
- token: ${{ secrets.GITHUB_TOKEN }}
-
70
71
- name: Setup Node & pnpm
72
uses: actions/setup-node@v3
0 commit comments