feat: update gtm link url#209
Conversation
Walkthrough한국어 문서 두 건의 Notifly GTM 템플릿 다운로드 URL을 Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10분
Suggested reviewers
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (3)
.github/workflows/ci.yml(1 hunks)docusaurus.config.js(2 hunks)i18n/ko/docusaurus-theme-classic/footer.json(1 hunks)
🧰 Additional context used
🪛 actionlint (1.7.8)
.github/workflows/ci.yml
15-15: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue
(action)
🔇 Additional comments (3)
docusaurus.config.js (1)
136-136: URL 업데이트가 정확합니다.네비게이션 바와 푸터에서 URL을
https://www.notifly.tech에서https://notifly.tech로 일관되게 업데이트했습니다.Also applies to: 159-159
i18n/ko/docusaurus-theme-classic/footer.json (1)
16-16: 메타데이터 업데이트가 올바릅니다.푸터 링크 설명이 실제 URL 변경사항과 일치하도록 정확하게 업데이트되었습니다.
.github/workflows/ci.yml (1)
18-18: 검토가 필요 없습니다. Node.js 버전 24는 올바릅니다.Node.js v24.x는 2025년 11월 기준 Active LTS 버전이므로 프로덕션 환경에 적합합니다. 현재 CI 구성이 올바르며, 변경이 필요하지 않습니다.
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v3 |
There was a problem hiding this comment.
오래된 액션 버전을 업데이트하세요.
actions/checkout@v3는 GitHub Actions에서 실행하기에는 너무 오래된 버전입니다. 최신 버전인 v4로 업데이트해야 합니다.
다음 diff를 적용하여 수정하세요:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| - uses: actions/checkout@v3 | |
| - uses: actions/checkout@v4 |
🧰 Tools
🪛 actionlint (1.7.8)
15-15: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue
(action)
🤖 Prompt for AI Agents
.github/workflows/ci.yml around line 15: the workflow uses an outdated
actions/checkout@v3; update the action reference to actions/checkout@v4 to use
the latest stable version, and ensure no other steps depend on v3-specific
behavior so the workflow continues to run correctly.
Summary
Summary by CodeRabbit
문서
잡무(Chores)