1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Require milestones on PRs before merging

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-10-19 12:43:50 -04:00
parent 7e6751bf38
commit b9d7129e0b

11
.github/workflows/require-milestone.yml vendored Normal file
View File

@ -0,0 +1,11 @@
name: Require Milestone
on:
pull_request:
types: [opened, edited]
jobs:
label:
runs-on: ubuntu-latest
steps:
- name: Require Milestone
if: ${{ github.event.pull_request.milestone == null }}
run: exit 1