Skip to content
This repository has been archived by the owner on Aug 16, 2022. It is now read-only.

Releases: flex-development/flautoreview

v1.0.1

21 Aug 18:27
Compare
Choose a tag to compare

📖 Documentation

v1.0.0 (🎂 First Release)

20 Aug 07:57
Compare
Choose a tag to compare

Overview

Do you work alone? Do you request reviews from your admin account? Is switching between accounts becoming a hassle? Geared towards lone developers, this action speeds up your pull request workflow by allowing you to automate reviews.

Features

  • Automate pull request reviews on the behalf of users and teams
  • Set who can receive automated reviews
  • Set custom review body text (supports multiline input)

Example Workflow

# .github/workflows/flautoreview.yml

---
name: Automate Pull Request Reviews
on:
  pull_request:
    types: [review_requested]
jobs:
  flautoreview:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout branch
        uses: actions/checkout@v2
      - name: flexdevelopment
        uses: '@flex-development/flautoreview@v1.0.0'
        with:
          body: lgtm 👍🏾
          reviewers: flexdevelopment
          senders: unicornware
          token: ${{ secrets.PAT_REPO_flexdevelopment }}