diff options
| author | Kirill Rysin <[email protected]> | 2025-09-25 17:34:10 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-09-25 15:34:10 +0000 |
| commit | 3dd28d28e2aeab7aceaa21e8a6efcf4a2dfca556 (patch) | |
| tree | 661ac6f15f6ac2f1004dbd847684e015c74658ac | |
| parent | c87e6b6e7f1e66b636b625bc001073ee1707cbec (diff) | |
Remove deprecated branches from workflow inputs (#25812)
| -rw-r--r-- | .github/workflows/update_muted_ya.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/update_muted_ya.yml b/.github/workflows/update_muted_ya.yml index 1498d958ec9..bb310528132 100644 --- a/.github/workflows/update_muted_ya.yml +++ b/.github/workflows/update_muted_ya.yml @@ -8,7 +8,7 @@ on: branches: description: 'Comma-separated list of branches to process' required: false - default: 'main,stable-25-1,stable-25-1-4,stable-25-2,stable-25-2-1,stable-25-3,stable-25-3-1,stream-nb-25-1' + default: 'main,stable-25-2,stable-25-2-1,stable-25-3,stable-25-3-1,stream-nb-25-1' env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -29,7 +29,7 @@ jobs: if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then echo "branches=$(echo '${{ github.event.inputs.branches }}' | jq -R -s -c 'split(",")')" >> $GITHUB_OUTPUT else - echo "branches=$(echo '["main","stable-25-1","stable-25-1-4","stable-25-2","stable-25-2-1","stable-25-3","stable-25-3-1","stream-nb-25-1"]' | jq -c .)" >> $GITHUB_OUTPUT + echo "branches=$(echo '["main","stable-25-2","stable-25-2-1","stable-25-3","stable-25-3-1","stream-nb-25-1"]' | jq -c .)" >> $GITHUB_OUTPUT fi update-muted-tests: |
