A simple Github action to handle custom logic for PRs. Created to streamline workflows for the aerie development team.
- Assigns PR opener as assignee
- Automatically give one approval to PRs with
documentation
orhotfix
labels, to speed up merging velocity for small changes.
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!