Hi, I’m Dung Huynh Duc . Nice to meet you.

About Me

I’m a full stack developer. I’m a fast learner and self-taught coder. I often take my time for researching and learning about hot and trending technology.

Github
Github Action

#TIL 4 - Trigger github action base on the comment

blog_hero_#TIL 4 - Trigger github action base on the comment
    # .github/workflows/comment.yml
    on:
      issue_comment:
        types: [created, edited]

    name: Deploy action
    jobs:
      web-image:
        name: build and deploy web docker image to AWS ECR
        runs-on: ubuntu-latest
        if: github.event.comment.body == 'Build web'
        steps:
         ...