Skip to content

[#54] github action comment 테스트 #1

[#54] github action comment 테스트

[#54] github action comment 테스트 #1

Workflow file for this run

name: Test Github Script
on:
pull_request:
branches: [ master ]
jobs:
issue-closed:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Add comment to PR
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GH_TOKEN }}
script: |
console.log(context)
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: "pr 코멘트에 메시지가 넣어지는지 확인"
})