File tree 1 file changed +11
-8
lines changed
1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,14 @@ jobs:
16
16
run : |
17
17
git config --global user.email "bot@coder.com"
18
18
git config --global user.name "Coder Bot"
19
- - run : |
20
- ./ci/scripts/bump-coder-cli.sh 1.14.1
21
- git diff
22
- git checkout -b bump-coder-cli-1.14.1
23
- git add coder-cli.rb
24
- git commit -m "feat: bump coder-cli version to v1.14.1"
25
- git push --set-upstream origin bump-coder-cli-1.14.1
26
- gh pr create --fill --reviewer cmoog
19
+ - name : Open PR to bump coder-cli version
20
+ env :
21
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
22
+ run : |
23
+ ./ci/scripts/bump-coder-cli.sh 1.14.1
24
+ git diff
25
+ git checkout -b bump-coder-cli-1.14.1
26
+ git add coder-cli.rb
27
+ git commit -m "feat: bump coder-cli version to v1.14.1"
28
+ git push --set-upstream origin bump-coder-cli-1.14.1
29
+ gh pr create --fill --reviewer cmoog
You can’t perform that action at this time.
0 commit comments