• Adding a comment on a Pull Request using Github Actions

    2 min read

    github action add comment PR

    As part of a CI/CD pipeline involving GitHub Actions we might want to be able to add a comment to the PR to notify the user about something:

    name: demo_add_comment_pr
    on:
      pull_request:
        types: [opened, ready_for_review]
      push:
        branches:
          - '**'
          - '!main'
        paths:    
          - cluster-resources/**
          - tests/**
      workflow_dispatch:
    
    (...)
    

    12/12/2022

    Read more...

From pet to cattle
Treat your kubernetes clusters like cattle, not pets