filter personal, professional tags (#1913) #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push Supabase migrations to leadminer.io | |
on: | |
push: | |
branches: [main] | |
paths: | |
- 'supabase/migrations/**' | |
workflow_dispatch: | |
jobs: | |
trigger: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
- name: Push supabase migrations to leadminer.io | |
uses: dmnemec/copy_file_to_another_repo_action@main | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.DEPLOY_PAT }} | |
with: | |
source_file: 'supabase/migrations' | |
destination_repo: 'ankaboot-source/leadminer.io' | |
destination_folder: './supabase' | |
user_email: '[email protected]' | |
user_name: 'deploy-bot' | |
commit_message: 'Updating supabase migrations' |