Skip to content

2025-09-10 ๋ฌธ์ œ ํ’€์—ˆ์–ด์š” #4

2025-09-10 ๋ฌธ์ œ ํ’€์—ˆ์–ด์š”

2025-09-10 ๋ฌธ์ œ ํ’€์—ˆ์–ด์š” #4

Workflow file for this run

name: ready-to-merge label check
on:
pull_request_target:
types: [labeled]
permissions:
checks: write
jobs:
label-check:
if: github.event.label.name == 'ready-to-merge'
runs-on: ubuntu-latest
steps:
- name: Mark as completed
uses: actions/github-script@v8
with:
script: |
const { owner, repo } = context.repo;
const sha = context.payload.pull_request.head.sha;
await github.rest.checks.create({
owner,
repo,
name: "ready-to-merge",
head_sha: sha,
conclusion: "success",
status: "completed"
})