feat: add autofocus into the composer after a template is selected (#… #589
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: Sync Production | |
| on: | |
| push: | |
| branches: | |
| - staging | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| sync-branches: | |
| runs-on: ${{ vars.RUNNER_IMAGE || 'ubuntu-latest' }} | |
| name: Syncing branches | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Opening pull request | |
| id: pull | |
| uses: JDTX0/[email protected] | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| FROM_BRANCH: 'staging' | |
| TO_BRANCH: 'main' | |
| PULL_REQUEST_TITLE: 'Deploy to production (Automated)' | |
| CONTENT_COMPARISON: true | |
| PULL_REQUEST_BODY: | | |
| This is an automated pull request to deploy the staging branch to production. | |
| Please review the pull request and comment `/deploy` to merge this PR and deploy to production. | |
| LABELS: '["production-deploy"]' |