1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-10-19 13:24:57 -04:00
parent 7a236a2561
commit 3f2c22f53b

View File

@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v2
- name: Require Milestone
run: |
echo "${{ toJson(github.event.pull_request) }}"
echo "${{ toJson(github.event.pull_request) }}" | jq 'if .milestone == null then 1 else 0 end'
echo "${{ toJson(github.event.pull_request.milestone) }}"
echo "${{ toJson(github.event.pull_request.milestone) }}" | jq 'if . == null then 1 else 0 end'
exit 1