[Bug] eslint 오류로 인한 js파일명 정리및 button, input 컴포넌트 수정(type 이중 중복, 스타일링 정리) #108
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: Automate project assignments | |
on: | |
issues: | |
types: [opened] | |
pull_request: | |
types: [opened] | |
jobs: | |
github-actions-automate-projects: | |
runs-on: ubuntu-latest | |
steps: | |
- name: add-new-issues-to-repository-based-project-column | |
if: github.event_name == 'issues' && github.event.action == 'opened' | |
uses: takanabe/[email protected] | |
env: | |
TOKEN: ${{ secrets.TOKEN }} | |
GITHUB_PROJECT_URL: https://github.com/orgs/Dev-FE-1/projects/7 | |
GITHUB_PROJECT_COLUMN_NAME: Todo | |
- name: add-new-prs-to-repository-based-project-column | |
if: github.event_name == 'pull_request' && github.event.action == 'opened' | |
uses: takanabe/[email protected] | |
env: | |
TOKEN: ${{ secrets.TOKEN }} | |
GITHUB_PROJECT_URL: https://github.com/orgs/Dev-FE-1/projects/7 | |
GITHUB_PROJECT_COLUMN_NAME: In Progress |