[CI] Add coverage failed tips and rerun #805
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: Re-run | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
re-run: | |
if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, '/re-run') && github.event.comment.user.login == github.event.issue.user.login }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Convert comment to lowercase | |
run: | | |
comment_body=$(echo '${{ github.event.comment.body }}' | tr '[:upper:]' '[:lower:]') | |
echo $comment_body | |
echo "comment_body=$comment_body" >> $GITHUB_ENV | |
- name: Rerun all failed jobs | |
if: ${{ contains(env.comment_body, 'all-failed') }} | |
uses: ./.github/actions/rerun-workflow | |
with: | |
PR_ID: ${{ github.event.issue.number }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OWNER: ${{ github.repository_owner }} | |
REPO: ${{ github.event.repository.name }} | |
JOB_NAME: 'all-failed' | |
- name: Rerun approval | |
if: ${{ contains(env.comment_body, 'approval') }} | |
uses: ./.github/actions/rerun-workflow | |
with: | |
PR_ID: ${{ github.event.issue.number }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OWNER: ${{ github.repository_owner }} | |
REPO: ${{ github.event.repository.name }} | |
JOB_NAME: 'Check approval' | |
- name: Rerun codestyle-check | |
if: ${{ contains(env.comment_body, 'codestyle') }} | |
uses: ./.github/actions/rerun-workflow | |
with: | |
PR_ID: ${{ github.event.issue.number }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OWNER: ${{ github.repository_owner }} | |
REPO: ${{ github.event.repository.name }} | |
JOB_NAME: 'Check bypass for codestyle / Check bypass' | |
- name: Rerun clone | |
if: ${{ contains(env.comment_body, 'clone') }} | |
uses: ./.github/actions/rerun-workflow | |
with: | |
PR_ID: ${{ github.event.issue.number }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OWNER: ${{ github.repository_owner }} | |
REPO: ${{ github.event.repository.name }} | |
JOB_NAME: 'Clone-linux / Clone Paddle' | |
- name: Rerun sot | |
if: ${{ contains(env.comment_body, 'sot') }} | |
uses: ./.github/actions/rerun-workflow | |
with: | |
PR_ID: ${{ github.event.issue.number }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OWNER: ${{ github.repository_owner }} | |
REPO: ${{ github.event.repository.name }} | |
JOB_NAME: 'PR-CI-SOT / Check bypass for SOT / Check bypass' | |
- name: Rerun inference | |
if: ${{ contains(env.comment_body, 'inference') && !contains(env.comment_body, 'build') && !contains(env.comment_body, 'test') }} | |
uses: ./.github/actions/rerun-workflow | |
with: | |
PR_ID: ${{ github.event.issue.number }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OWNER: ${{ github.repository_owner }} | |
REPO: ${{ github.event.repository.name }} | |
JOB_NAME: 'PR-CI-Inference / Check bypass for inference / Check bypass' | |
- name: Rerun inference build | |
if: ${{ contains(env.comment_body, 'inference') && contains(env.comment_body, 'build') }} | |
uses: ./.github/actions/rerun-workflow | |
with: | |
PR_ID: ${{ github.event.issue.number }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OWNER: ${{ github.repository_owner }} | |
REPO: ${{ github.event.repository.name }} | |
JOB_NAME: 'PR-CI-Inference / Build' | |
- name: Rerun inference test | |
if: ${{ contains(env.comment_body, 'inference') && contains(env.comment_body, 'test') }} | |
uses: ./.github/actions/rerun-workflow | |
with: | |
PR_ID: ${{ github.event.issue.number }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OWNER: ${{ github.repository_owner }} | |
REPO: ${{ github.event.repository.name }} | |
JOB_NAME: 'PR-CI-Inference / Test' |