Skip to content
This repository was archived by the owner on Aug 6, 2023. It is now read-only.

Commit

Permalink
Add workflow to remove statuses after approve
Browse files Browse the repository at this point in the history
  • Loading branch information
Morb0 committed Jun 23, 2022
1 parent 492cfad commit 49afa5c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/labeler-approve.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Labels: Approve"

on:
pull_request_target:
types: [submitted]

jobs:
remove_label:
if: github.event.review.state == 'approved'
runs-on: ubuntu-latest
steps:
- uses: actions-ecosystem/action-remove-labels@v1
with:
labels: |
Status: Needs Review
Status: Awaiting Changes

0 comments on commit 49afa5c

Please sign in to comment.