[FE-Fix] 마감기한을 잘못 계산하던 문제, 다가오는일정 세부 타임라인 화면에서 실제보다 달이 1 적게 출력되던 문제 수정 #177
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: Auto Assign | |
on: | |
pull_request: | |
types: [opened, ready_for_review, converted_to_draft] | |
issues: | |
types: [opened] | |
jobs: | |
assign_pull_request: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- uses: hkusu/review-assign-action@v1 | |
with: | |
assignees: ${{ github.actor }} | |
auto_assign_issue: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'issues' | |
permissions: | |
issues: write | |
steps: | |
- name: 'Auto-assign issue' | |
uses: pozil/auto-assign-issue@v2 | |
with: | |
assignees: ${{ github.actor }} |