We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2076df commit 5a42b8bCopy full SHA for 5a42b8b
1 file changed
.github/workflows/bump-cli.yml
@@ -23,13 +23,13 @@ jobs:
23
fetch-depth: 1
24
- name: Bump CLI
25
env:
26
- GH_TOKEN: ${{ github.token }}
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27
run: |
28
scripts/replace-cli-version.sh
29
- name: Commit, Push and Open a PR
30
uses: ./.github/actions/create-pr
31
with:
32
- token: ${{ github.token }}
+ token: ${{ secrets.GITHUB_TOKEN }}
33
base-branch: main
34
head-branch: github-action/bump-cli
35
commit-message: Bump CLI version from ${{ env.PREVIOUS_VERSION }} to ${{ env.LATEST_VERSION }} for integration tests
0 commit comments