-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: PR close 시 merged 라벨 추가 및 기존 워크플로 픽스 (#43)
* chore: 워크플로 이름 수정 * refactor: 파일명 변경 * chore: PR이 closed 될 때 merged 라벨 추가하는 워크플로 작성 * chore: 테스트용 트리거 추가 * chore: 권한 설정 변경 * chore: 테스트 트리거 재설정 * chore: 테스트 트리거 롤백 * chore: 프로젝트 워크플로 테스트 트리거 활성화 * �chore: 코드 정적 분석 SonarCloud 설정 (#38) * �chore: 코드 정적 분석 SonarCloud 설정 (#38) * chore: pending 워크플로우의 쿼리 수정 * fix: pending 상태 id 값 직접 삽입 * fix: 쿼리 전 인자값을 미리 선언하도록 지정 * chore: 테스트 트리거 롤백 * chore: 잡 이름 변경 * chore: 워크플로 이름 변경 --------- Co-authored-by: yb__char <68099546+uiurihappy@users.noreply.github.com> Co-authored-by: ybchar <uiurihappy@sju.ac.kr>
- Loading branch information
1 parent
a7ed2a4
commit acd8d64
Showing
2 changed files
with
36 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Add 'merged' label to closed PR | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
|
||
jobs: | ||
set_merged: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- name: Add 'merged' label to closed PR | ||
run: gh issue edit "$PR_NUMBER" --add-label "merged" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GH_REPO: ${{ github.repository }} | ||
PR_NUMBER: ${{ github.event.pull_request.number }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters