Skip to content

Commit 8302505

Browse files
committed
Don't run code formatting automatically
1 parent fc67633 commit 8302505

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

.github/workflows/format-code.yaml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
name: Format code
22

3-
on:
4-
pull_request:
5-
branches: [main]
6-
7-
# Right now we only want to run this on PRs to main.
8-
# The branch protection rules that we have in place prevent
9-
# it from running on direct pushes.
10-
# push:
3+
# Only run this workflow when manually triggered
4+
on: workflow_dispatch
5+
# pull_request:
116
# branches: [main]
127

138
jobs:

.github/workflows/pull-request-checks.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
FORCE_COLOR: 2
1919
steps:
2020
- name: Check out repository
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Setup node
24-
uses: actions/setup-node@v4
24+
uses: actions/setup-node@v6
2525
with:
2626
node-version: 22
2727
cache: "yarn"
@@ -59,10 +59,10 @@ jobs:
5959
runs-on: ubuntu-latest
6060
steps:
6161
- name: Check out repository
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v5
6363

6464
- name: Setup node
65-
uses: actions/setup-node@v4
65+
uses: actions/setup-node@v6
6666
with:
6767
node-version: 22
6868
cache: "yarn"

0 commit comments

Comments
 (0)