chore(deps): update dependency @sveltejs/vite-plugin-svelte to v4 (#6β¦ #4504
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: keep-dev-branches-in-sync-with-latest | |
on: | |
push: | |
branches: | |
- latest | |
env: | |
PRISMA_TELEMETRY_INFORMATION: 'prisma-examples keep-dev-branch-in-sync-with-latest.yaml' | |
jobs: | |
sync-dev: | |
if: github.repository_owner == 'prisma' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: sync dev | |
run: sh .github/scripts/sync.sh dev | |
env: | |
SSH_KEY: ${{ secrets.SSH_KEY }} | |
sync-patch-dev: | |
if: github.repository_owner == 'prisma' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: sync patch-dev | |
run: sh .github/scripts/sync.sh patch-dev | |
env: | |
SSH_KEY: ${{ secrets.SSH_KEY }} | |
report-to-slack-failure: | |
if: github.repository_owner == 'prisma' && failure() | |
runs-on: ubuntu-latest | |
needs: [sync-dev, sync-patch-dev] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: report failure to slack | |
run: bash .github/scripts/slack-workflow-status.sh "[keep-dev-branches-in-sync-with-latest] check-for-update :x:" | |
env: | |
SLACK_WEBHOOK_URL_FAILING: ${{ secrets.SLACK_WEBHOOK_URL_FAILING }} |