There was an error while loading. Please reload this page.
1 parent 421d98c commit d97240bCopy full SHA for d97240b
.github/workflows/update-readme-table.yaml
@@ -20,6 +20,11 @@ jobs:
20
with:
21
python-version: '3.9'
22
23
+ - name: Delete existing 'update-readme-bot' branch
24
+ run: |
25
+ git push --delete origin update-readme-bot || echo "Branch doesn't exist, continuing..."
26
+ git branch -D update-readme-bot || echo "Branch doesn't exist, continuing..."
27
+
28
- name: Install dependencies
29
run: pip install pyyaml
30
@@ -34,8 +39,8 @@ jobs:
34
39
git config --global user.email "cloud-java-bot@google.com"
35
40
git add README.md
36
41
git commit -m "chore: update README with release table"
37
- git checkout -b update-readme
38
- git push origin update-readme
42
+ git checkout -b update-readme-bot
43
+ git push origin update-readme-bot
44
45
- name: Create Pull Request
46
run: |
0 commit comments