deps(deps-dev): bump mini-css-extract-plugin from 2.9.2 to 2.10.0 in /ansible_ai_connect_admin_portal #523
Workflow file for this run
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: Backport merged pull request | |
| on: | |
| pull_request_target: | |
| types: [closed, labeled] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| backport: | |
| name: Backport PR | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.merged == true | |
| steps: | |
| - name: Backport to release branches | |
| uses: korthout/backport-action@v3 | |
| with: | |
| label_pattern: '^backport/(?<target>.+)$' | |
| target_branches: | | |
| all:stable-2.4 stable-2.5 stable-2.6 | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| copy_labels_pattern: '^(bug|security|breaking-change|dependencies)$' | |
| pull_description: | | |
| # Backport of #${pull_number} | |
| ${pull_description} | |
| --- | |
| **Original PR:** #${pull_number} | |
| **Backported by:** @${{ github.actor }} | |
| ## Backport Verification | |
| - [ ] Changes apply cleanly | |
| - [ ] Tests pass | |
| - [ ] No conflicts with target branch | |
| pull_title: "[Backport ${target_branch}] ${pull_title}" |