Skip to content

Commit fcf40bc

Browse files
authored
fix flatbot failing formatting (#687)
1 parent bd88684 commit fcf40bc

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/proto_filepull.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
# Push new branch so Flatbot can make its commit
2626
- name: "Push Flatbot branch"
2727
run: "git push -f --set-upstream origin $BRANCH_NAME"
28-
# Install Black
29-
- name: "Install Python Black"
30-
run: "pip install black"
28+
# Install Ruff
29+
- name: "Install Python Ruff"
30+
run: "pip install ruff"
3131
# This step installs Deno, which is a new Javascript runtime that improves on Node. Can be used for an optional postprocessing step
3232
- name: "Setup deno"
3333
uses: "denoland/setup-deno@main"

.github/workflows/proto_num_filepull.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
# Push new branch so Flatbot can make its commit
2626
- name: "Push Flatbot branch"
2727
run: "git push -f --set-upstream origin $BRANCH_NAME"
28-
# Install Black
29-
- name: "Install Python Black"
30-
run: "pip install black"
28+
# Install Ruff
29+
- name: "Install Python Ruff"
30+
run: "pip install ruff"
3131
# This step installs Deno, which is a new Javascript runtime that improves on Node. Can be used for an optional postprocessing step
3232
- name: "Setup deno"
3333
uses: "denoland/setup-deno@main"

changes/+fix-flatbot.housekeeping

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix CI for Flatbot to install Ruff and remove black.

0 commit comments

Comments
 (0)