Skip to content

Commit 961f789

Browse files
committed
fixup! feat: add action workflow for bumping coder-cli
1 parent 9225327 commit 961f789

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/bump-coder-cli.yaml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@ jobs:
1616
run: |
1717
git config --global user.email "bot@coder.com"
1818
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

0 commit comments

Comments
 (0)