Promote Target Patch Branch to Main #5
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
| # workflows/sync-promote-branch.yml | |
| # | |
| # Promote Target Patch Branch to Main | |
| # Promote a resolved target-patch-* branch to main after manual approval and CI validation. | |
| name: Promote Target Patch Branch to Main | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| branch_name: | |
| description: "Branch name to promote (must match target-patch-*)" | |
| required: true | |
| type: string | |
| concurrency: | |
| group: promote-branch | |
| cancel-in-progress: false | |
| permissions: | |
| actions: write | |
| contents: write | |
| issues: write | |
| pull-requests: read | |
| jobs: | |
| call-promote: | |
| uses: paradedb/actions/.github/workflows/reusable-promote.yml@v8 | |
| with: | |
| branch_name: ${{ inputs.branch_name }} | |
| approvers: "philippemnoel,rebasedming,stuhood,mdashti" | |
| github_app_client_id: ${{ vars.PARADEDB_GITHUB_APP_CLIENT_ID }} | |
| secrets: | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_GITHUB_CHANNEL_WEBHOOK_URL }} | |
| PARADEDB_GITHUB_APP_PRIVATE_KEY: ${{ secrets.PARADEDB_GITHUB_APP_PRIVATE_KEY }} |