io.github.pshevche.act
Owner: Pavlo Shevchenko
Plugin for validating GitHub workflows locally using 'nektos/act' runner
https://github.com/pshevche/gradle-act-plugin
Sources: https://github.com/pshevche/gradle-act-plugin.git
Version 1.0 (latest)
1.0
Created 27 July 2024.
Plugin for validating GitHub workflows locally using 'nektos/act' runner
Using the plugins DSL:
plugins {
id("io.github.pshevche.act") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.pshevche:gradle-act-plugin:1.0")
}
}
apply(plugin = "io.github.pshevche.act")
Using the plugins DSL:
plugins {
id "io.github.pshevche.act" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.pshevche:gradle-act-plugin:1.0"
}
}
apply plugin: "io.github.pshevche.act"