Create issues for muted tests #1781
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: Create issues for muted tests | |
on: | |
pull_request_review: | |
types: | |
- submitted | |
workflow_dispatch: | |
inputs: | |
pr_number: | |
description: 'The pull request number' | |
required: true | |
type: number | |
env: | |
GH_TOKEN: ${{ secrets.YDBOT_TOKEN }} | |
MUTED_YA_FILE_PATH: .github/config/muted_ya.txt | |
jobs: | |
create-issues-for-muted-tests: | |
runs-on: ubuntu-latest | |
if: | | |
github.event.review.state == 'approved' && | |
contains(github.event.pull_request.labels.*.name, 'mute-unmute') || | |
github.event_name == 'workflow_dispatch' | |
steps: | |
- name: Set environment variables for branches | |
run: | | |
echo "BRANCH_FOR_PR=${{ github.event.pull_request.head.ref || github.head_ref }}" >> $GITHUB_ENV | |
echo "BASE_BRANCH=${{ github.event.pull_request.base.ref || github.base_ref }}" >> $GITHUB_ENV | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref || github.head_ref }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install ydb[yc] PyGithub | |
- name: Setup ydb access | |
uses: ./.github/actions/setup_ci_ydb_service_account_key_file_credentials | |
with: | |
ci_ydb_service_account_key_file_credentials: ${{ secrets.CI_YDB_SERVICE_ACCOUNT_KEY_FILE_CREDENTIALS }} | |
- name: Create issues for muted tests | |
id: create_issues | |
env: | |
GITHUB_TOKEN: ${{ env.GH_TOKEN }} | |
run: | | |
.github/scripts/tests/create_new_muted_ya.py create_issues --file_path=${{ github.workspace }}/${{ env.MUTED_YA_FILE_PATH }} | |
- name: Add issues to PR | |
env: | |
GITHUB_TOKEN: ${{ env.GH_TOKEN }} | |
run: | | |
python .github/scripts/create_or_update_pr.py append_pr_body --pr_number=${{ github.event.pull_request.number || github.event.inputs.pr_number }} --body=${{ steps.create_issues.outputs.created_issues_file }} | |
- name: Comment PR | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ env.GH_TOKEN }} | |
script: | | |
const fs = require('fs'); | |
const path = require('path'); | |
const workflowUrl = `https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}`; | |
const filePath = ${{ steps.create_issues.outputs.created_issues_file }} | |
const bodyText = fs.readFileSync(filePath, 'utf8'); | |
const completeBody = `Collected in workflow [#${{ github.run_number }}](${workflowUrl})\n\n${bodyText}`; | |
github.rest.issues.createComment({ | |
issue_number: ${{ github.event.pull_request.number || github.event.inputs.pr_number }}, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: completeBody | |
}); |