Skip to content

Commit

Permalink
Check for "Test Plan Approved" Label in PRs (appsmithorg#13718)
Browse files Browse the repository at this point in the history
  • Loading branch information
hetunandu committed May 11, 2022
1 parent 43758f6 commit 97c5aee
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/label-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Label Checker
on:
pull_request:
types:
- opened
- synchronize
- reopened
- labeled
- unlabeled

jobs:

check_labels:
name: Check for Test Plan Approved label
runs-on: ubuntu-latest
steps:
- uses: docker:https://agilepathway/pull-request-label-checker:latest
with:
# Needs to have a Test Plan Approved label if not part of any of the pods below
any_of: Test Plan Approved, App Viewers Pod, User Education Pod, New Developers Pod, Team Managers Pod, UI Builders Pod
repo_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 97c5aee

Please sign in to comment.