2 min read
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...