issue label 을 직접 써볼려다가 이러한 글을 발견했는데 적용해보는게 어떤가요?? Github Label, Issue, Pull Request Template 적용하기Github을 사용하다 보면 Label 관리의 필요성을 느낄 때가 있습니다. 특히 팀으로 일하는 경우 동일한 규칙에 맞춰서 Label을 정해서 사용할텐데, 매번 새로운 저장소를 만들 때 마다 세팅을 해줘야 합니다. 그리고 Issue과 PR(Pull Request)의 경우도 마찬가지입니다. 특히 공개 된 저장소의 경우, 정해진 형식에 맞게 Issue와 PR을 올리는 것이 아니기 때문에 정리가 잘 안되는 경우가 많습니다.https://velog.io/@modolee/github-initial-settings 주디가 찾아본 자료들 추가GitHub Project Automation+ - GitHub Marketplace🤖 Automate GitHub Project cards with any webhook event This action allows you to use any of the pull_request and issue webhook events to automate your project cards. For example when an issue is opened create a card in the Backlog project, Triage column.https://github.com/marketplace/actions/github-project-automationActions Ecosystem Add Labels - GitHub MarketplaceGitHub Action This is a GitHub Action to add GitHub labels to an issue or a pull request. This action extract the number from an issue or a pull request which has triggered this by default. It means you don't need to care about something annoying like whether you should use ${{ github.event.issue.number }} or ${{ github.event.pull_request.number }}.https://github.com/marketplace/actions/actions-ecosystem-add-labelsActions Ecosystem Remove Labels - GitHub MarketplaceGitHub Action This is a GitHub Action to remove GitHub labels to an issue or a pull request. This action extract the number from an issue or a pull request which has triggered this by default. It means you don't need to care about something annoying like whether you should use ${{ github.event.issue.number }} or ${{ github.event.pull_request.number }}.https://github.com/marketplace/actions/actions-ecosystem-remove-labels헤이딜러 개발팀 모두가 행복한 개발/PR관리 방법 7가지개발자마다 코딩하는 방식은 제각각입니다. 똑같은 if/else문을 작성하더라도 각자의 방식대로 코딩합니다.😱 vs name을 표시하는 TextView라는 UI의 id를 정할때도 등으로 자기가 맘에드는것으로 선택해서 정합니다. 혼자 개발할때는 문제가 없지만 여러명이 하나의 프로젝트를 개발할때는 각자 다른 방식으로 코딩하는것이 문제가 됩니다. 그래서 코딩 컨벤션📝이 필요합니다.코딩 컨벤션을 만들고 이를 모두가 지켜서 코딩한다면 아래와 같은 점이 좋습니다.https://medium.com/prnd/%ED%97%A4%EC%9D%B4%EB%94%9C%EB%9F%AC-%EA%B0%9C%EB%B0%9C%ED%8C%80-%EB%AA%A8%EB%91%90%EA%B0%80-%ED%96%89%EB%B3%B5%ED%95%9C-%EA%B0%9C%EB%B0%9C-pr%EA%B4%80%EB%A6%AC-%EB%B0%A9%EB%B2%95-7%EA%B0%80%EC%A7%80-1d4cd5d091f0여기서는 아래 이미지처럼 라벨을 생성해두고 PR 상태에 따라 자동으로 변경하게 설정했다고 하더라고요! 그래서 이 라벨 설정을 Git Project랑 연결해서 Workflow을 만들면 편하지 않을까 생각만 했습니다. ㅎㅎ