[CCAP-670] Enhance file conversion service to retry up to 10 times if LibreOffice fails #1198
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: 'Set Assignee and Reviewer' | |
on: | |
pull_request: | |
types: [opened, ready_for_review] | |
jobs: | |
add-assignee: | |
name: Add author as assignee in GitHub | |
runs-on: ubuntu-latest | |
steps: | |
- uses: kentaro-m/[email protected] | |
with: | |
configuration-path: '.github/auto_assign.yml' | |
add-reviewers: | |
name: Randomly select code-reviewers | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: uesteibar/reviewer-lottery@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |