-
Notifications
You must be signed in to change notification settings - Fork 0
chore: github actions workflow 개편 #244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,41 @@ | ||
| name: QA Task | ||
| description: QA용 이슈 템플릿입니다.(기존 JIRA의 이슈와 연동됩니다) | ||
| title: "qa] " | ||
| labels: ["🛠️ qa"] | ||
| body: | ||
| - type: input | ||
| id: parentKey | ||
| attributes: | ||
| label: '🎟️ 작업 (Ticket Number)' | ||
| description: '연동할 작업의 Ticket Number를 기입해주세요' | ||
| placeholder: 'BOOK-00' | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: input | ||
| id: description | ||
| attributes: | ||
| label: "🛠️ qa 설명" | ||
| description: "어떤 qa 항목에 대한 수정사항인지 명확히 작성해주세요" | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: tasks | ||
| attributes: | ||
| label: "🔧 수정할 작업 목록" | ||
| description: "수정해야 할 항목들을 체크리스트로 작성해주세요" | ||
| value: | | ||
| - [ ] .. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: input | ||
| id: links | ||
| attributes: | ||
| label: "🔗 참고 링크" | ||
| description: "관련 문서, 스크린샷, 로그 등이 있다면 첨부해주세요 (선택)" | ||
| placeholder: "https://..." | ||
| validations: | ||
| required: false | ||
|
|
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔒 신뢰할 수 없는 입력값 처리: 환경 변수 사용 권장
GitHub Actions 보안 가이드라인에 따르면, 신뢰할 수 없는 입력값(
github.event.issue.title)은 환경 변수를 통해 전달하는 것이 권장됩니다. HERE 문서 방식보다 환경 변수를 사용하면 스크립트 인젝션 위험을 더 효과적으로 완화할 수 있습니다.- name: Extract Jira issue key from GitHub issue title id: extract-key + env: + ISSUE_TITLE: ${{ github.event.issue.title }} run: | - ISSUE_TITLE=$(cat <<'EOF' - ${{ github.event.issue.title }} - EOF - ) + ISSUE_TITLE="${ISSUE_TITLE}" echo "📋 Issue Title: $ISSUE_TITLE"📝 Committable suggestion
🧰 Tools
🪛 actionlint (1.7.8)
21-21: "github.event.issue.title" is potentially untrusted. avoid using it directly in inline scripts. instead, pass it through an environment variable. see https://docs.github.com/en/actions/reference/security/secure-use#good-practices-for-mitigating-script-injection-attacks for more details
(expression)