Set An Issues Event As A Trigger

With custom scripts below, we need put it on events trigger of Github Action Workflow. With this demo, we will put in on issues type when issues was raise and had any update.

name: Using Gemini Action In WorkFlows.

on:
  issues:
    types: [opened, edited]

So when issues was created by anyone, Github CICD will be trigger as defined

Last updated