summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorseth <[email protected]>2023-03-02 22:57:26 -0500
committerseth <[email protected]>2023-03-02 22:57:26 -0500
commitaea8252b193d6422bee859e0d3bd2a531ef6ed06 (patch)
treea277ab80017770297f74e7b33f385231f7222319 /.github
parent32bffffc75991b0da5d99415636e10709efd1230 (diff)
fix(actions): actually don't format on pr
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/checkandformat.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/checkandformat.yml b/.github/workflows/checkandformat.yml
index aa02d1c..bb8e348 100644
--- a/.github/workflows/checkandformat.yml
+++ b/.github/workflows/checkandformat.yml
@@ -17,7 +17,7 @@ jobs:
- run: nix flake check
format:
- if: ${{ github.event_name == 'pull_request' }}
+ if: ${{ github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3