chore: 운영 문서 docs 하위 이동 #13
Workflow file for this run
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
| name: Release Record Check | |
| on: | |
| pull_request: | |
| paths: | |
| - 'releases/**/*.yaml' | |
| - 'scripts/release/**' | |
| - 'docs/ops/**' | |
| - '.github/workflows/deploy-prod.yml' | |
| - '.github/workflows/release-record-check.yml' | |
| workflow_dispatch: | |
| jobs: | |
| validate-release-records: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Validate release records | |
| run: node scripts/release/validate-release-record.mjs releases |