Skip to content

Commit

Permalink
chore: filter deploy section by repo owner (#69)
Browse files Browse the repository at this point in the history
* fix: interpolations erros and other things reported by sourcery-ai

* chore: filter deploy section by repo owner
  • Loading branch information
leynier committed Jan 5, 2022
1 parent 5697d8e commit 82820e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

publish:
needs: test
if: ${{ !startsWith(github.event.head_commit.message, 'bump') && !startsWith(github.event.head_commit.message, 'chore') && github.ref == 'refs/heads/master' && github.event_name == 'push' }}
if: ${{ !startsWith(github.event.head_commit.message, 'bump') && !startsWith(github.event.head_commit.message, 'chore') && github.ref == 'refs/heads/master' && github.event_name == 'push' && github.repository_owner == 'supabase-community' }}
runs-on: ubuntu-latest
name: "Bump version, create changelog and publish"
steps:
Expand Down

0 comments on commit 82820e4

Please sign in to comment.