Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 682 Bytes

README.md

File metadata and controls

26 lines (23 loc) · 682 Bytes

Aerie Pull Request Action

A simple Github action to handle custom logic for PRs. Created to streamline workflows for the aerie development team.

Features

  • Assigns PR opener as assignee
  • Automatically give one approval to PRs with documentation or hotfix labels, to speed up merging velocity for small changes.

Usage

Add the following to e.g. ./.github/workflows/aerie.yml

name: "Aerie PR Logic"
on:
  pull_request:
    types:
      - opened
      - synchronize
      - ready_for_review
      - labeled
      - unlabeled
jobs:
  pr_logic:
  steps:
    - uses: nasa-ammos/aerie-pr-action@main

...and then open a PR!