Skip to content

dschep/filter-event-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Github Action to filter on event fields

Use JS expressions to filter execution of Github Actions on event payloads. The JSON parsed event is available as event. Pass the expression as the args to the action.

Usage

An example workflow to block deleted branches:

workflow "Remove" {
  on = "push"
  resolves = ["on deleted branches only"]
}

action "on deleted branches only" {
  uses = "dschep/filter-event-action@master"
  args = "event.deleted"
}