feat(ChipsInputBase): add cycle navigates between chips #2820
Workflow file for this run
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: 'Close Pull Request' | |
on: | |
pull_request: | |
types: [closed] | |
workflow_dispatch: | |
inputs: | |
pr_number_by_workflow_dispatch: | |
description: 'Number of PR' | |
type: number | |
required: true | |
jobs: | |
upload_pr_workflow_payload: | |
# Не используем always(), т.к. он не учитывает отмену воркфлоу | |
# см. https://github.com/orgs/community/discussions/26303 | |
if: ${{ !cancelled() }} | |
name: Call reusable workflow | |
uses: ./.github/workflows/reusable_workflow_pr_worfklow_payload.yml | |
with: | |
action: upload | |
override_pr_number: ${{ inputs.pr_number_by_workflow_dispatch }} | |
patch: | |
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'patch') | |
concurrency: ci-stable | |
runs-on: ubuntu-latest | |
name: Stable Patch | |
steps: | |
- name: Checkout (for forked PR) | |
if: github.event.pull_request.base.repo.id != github.event.pull_request.head.repo.id | |
uses: actions/checkout@v4 | |
- name: Checkout (for maintainer's PR) | |
if: github.event.pull_request.base.repo.id == github.event.pull_request.head.repo.id | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }} | |
- name: Setup NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Set Git credentials | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
- name: Make patch | |
uses: VKCOM/gh-actions/VKUI/patch@main | |
with: | |
token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }} | |
directory: packages/vkui/ |