Skip to content

Commit

Permalink
Remove push even from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
silentworks committed Sep 28, 2023
1 parent 576abbb commit 7a054fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 32 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI/CD

on: [pull_request, push, workflow_dispatch]
on: [pull_request, workflow_dispatch]

jobs:
test:
Expand Down Expand Up @@ -31,7 +31,7 @@ jobs:
uses: codecov/codecov-action@v1
publish:
needs: test
if: ${{ !startsWith(github.event.head_commit.message, 'bump') && !startsWith(github.event.head_commit.message, 'chore') && github.ref == 'refs/heads/main' && github.event_name == 'push' && github.repository_owner == 'supabase-community' }}
if: ${{ !startsWith(github.event.head_commit.message, 'bump') && !startsWith(github.event.head_commit.message, 'chore') && github.ref == 'refs/heads/main' && github.repository_owner == 'supabase-community' }}
runs-on: ubuntu-latest
name: "Bump version, create changelog and publish"
environment:
Expand Down
30 changes: 0 additions & 30 deletions .github/workflows/manual_pypi_publish.yml

This file was deleted.

0 comments on commit 7a054fe

Please sign in to comment.