add "Passive Mining" dialog on mining finished (#2595) #94
This file contains hidden or 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: 'deploy@leadminer.io' | |
| user_name: 'deploy-bot' | |
| commit_message: 'Updating supabase migrations' |