feed페이지 기획 반영 미비한 부분 구현 #403
Workflow file for this run
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
name: Ticket Check | |
on: | |
pull_request: | |
types: [opened, synchronize, edited, reopened] | |
concurrency: | |
group: ticket-check-${{ github.ref }}-${{ github.actor }} | |
cancel-in-progress: true | |
jobs: | |
ticketcheck: | |
if: ${{ github.head_ref != 'develop' }} | |
name: Ticket Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Set up Node V2 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18.17.0' | |
- run: corepack enable | |
- run: yarn install | |
- run: yarn ts-node-script -T ./scripts/issue-ticket.ts ${{ toJSON(github.event.pull_request.title) }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |