Update label_checker.yml

This commit is contained in:
Masataka SUMI
2024-07-04 15:11:05 +09:00
committed by GitHub
parent e606673ac2
commit b4d87c605a

View File

@@ -13,31 +13,27 @@ permissions:
statuses: write
jobs:
ready-deploy:
check-label:
runs-on: ubuntu-latest
name: Breaking changes label checker
steps:
- name: Pass if labeled
if: "contains(github.event.pull_request.labels.*.name, 'Breaking changes') || contains(github.event.pull_request.labels.*.name, 'Non breaking changes')"
run: |
curl --request POST \
--url https://api.github.com/repos/${{github.repository}}/statuses/${{github.event.pull_request.head.sha}} \
--header 'authorization: Bearer ${{secrets.GITHUB_TOKEN}}' \
--header 'content-type: application/json' \
--data '{
"context": "Breaking changes label checker",
"state": "success",
"description": "Already labeled. Thank you."
}'
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{secrets.GITHUB_TOKEN}}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{github.repository}}/statuses/${{github.event.pull_request.head.sha}} \
-d '{"state":"success","description":"Labeled. Thank you.","context":"Breaking changes label checker"}'
- name: Pending if not labeled
if: "!(contains(github.event.pull_request.labels.*.name, 'Breaking changes') || contains(github.event.pull_request.labels.*.name, 'Non breaking changes'))"
run: |
curl --request POST \
--url https://api.github.com/repos/${{github.repository}}/statuses/${{github.event.pull_request.head.sha}} \
--header 'authorization: Bearer ${{secrets.GITHUB_TOKEN}}' \
--header 'content-type: application/json' \
--data '{
"context": "Breaking changes label checker",
"state": "pending",
"description": "Please label \"Breaking changes\" or \"Non Breaking changes\"."
}'
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{secrets.GITHUB_TOKEN}}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{github.repository}}/statuses/${{github.event.pull_request.head.sha}} \
-d '{"state":"failure","description":"Please label Breaking changes or Non Breaking changes.","context":"Breaking changes label checker"}'