Skip to content

Commit c5b346f

Browse files
author
Andrew Smith
authoredSep 28, 2023
Merge pull request #571 from supabase-community/silentworks/remove-push-event
Remove push even from workflow
2 parents 576abbb + 7a054fe commit c5b346f

File tree

2 files changed

+2
-32
lines changed

2 files changed

+2
-32
lines changed
 

‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: CI/CD
22

3-
on: [pull_request, push, workflow_dispatch]
3+
on: [pull_request, workflow_dispatch]
44

55
jobs:
66
test:
@@ -31,7 +31,7 @@ jobs:
3131
uses: codecov/codecov-action@v1
3232
publish:
3333
needs: test
34-
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' }}
34+
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' }}
3535
runs-on: ubuntu-latest
3636
name: "Bump version, create changelog and publish"
3737
environment:

‎.github/workflows/manual_pypi_publish.yml

-30
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.