Develop/DevOps
2024. 6. 24.
[DevOps] github action에서 author.email을 다른방식으로 얻는방법
github action에서 여러가지 액션 패키지를 사용하면서 workflow dispatch를 실행시킨 유저의 이메일 정보를 얻어야할때가 있는데, workflow dispatch로 action을 실행하게된다면 일반적으로 얻을수있는 정보값이 빈칸으로 입력된다.${{ github.event.head_commit.author.email }} 따라서 만약 위와같은 값이 빈칸으로 들어와 있는 경우에는 아래와 같은 변수 선언 방식으로 workflow dispatch를 실행한 유저의 이메일 정보를 넣어줄수가 있다.관련 정보는 https://github.com/orgs/community/discussions/40405#discussioncomment-8361451 해당 링크에서 얻었다. Get user email f..