Update muted_ya.txt in stable-25-1 #3574
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: PR-description | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
branches: | |
- main | |
- stable-* | |
jobs: | |
validate-pr-description: | |
runs-on: [ self-hosted, auto-provisioned, build-preset-analytic-node] | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Use custom PR validation action | |
id: validate | |
uses: ./.github/actions/validate_pr_description | |
with: | |
pr_body: "${{ github.event.pull_request.body }}" | |
- name: Test output | |
if: always() | |
run: echo "Result of validation is ${{ steps.validate.outputs.status }}" | |
- name: Set status | |
if: failure() | |
run: echo "Validation failed." |