feat: reversible thread inbox state operations #36
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: Automatically request reviews | |
| on: | |
| pull_request: | |
| types: [opened, ready_for_review] | |
| jobs: | |
| request-reviews-frontend-product: | |
| runs-on: ubuntu-latest | |
| if: | | |
| !github.event.pull_request.draft && | |
| github.actor != 'dependabot[bot]' && | |
| github.actor != 'renovate[bot]' | |
| steps: | |
| - name: Automatically request reviews from Frontend Product | |
| uses: doist/auto-request-reviews-action@v1 | |
| with: | |
| reviewers: 1 | |
| team: 'Doist/frontend-product' | |
| token: ${{ secrets.GH_PROJECTS_TOKEN }} |