We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8bff81 commit be4509cCopy full SHA for be4509c
.github/workflows/bump-coder-cli.yaml
@@ -16,11 +16,12 @@ jobs:
16
run: |
17
git config --global user.email "bot@coder.com"
18
git config --global user.name "Coder Bot"
19
+ git remote add github "https://$GITHUB_ACTOR:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY.git"
20
- run: |
21
./ci/scripts/bump-coder-cli.sh 1.14.1
22
git diff
23
git checkout -b bump-coder-cli-1.14.1
24
git add coder-cli.rb
25
git commit -m "feat: bump coder-cli version to v$version"
- git push --set-upstream origin bump-coder-cli-1.14.1
26
+ git push --set-upstream github bump-coder-cli-1.14.1
27
gh pr create --fill --reviewer cmoog
0 commit comments