Registry /
utility / actions-workflow-parser
Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
workflow_parser
✓ github.com/actions/workflow-parser
Parses a GitHub Actions workflow YAML file and prints its name.
package main
import (
"fmt"
"github.com/actions/workflow-parser"
)
func main() {
wf, err := workflow_parser.ParseFile(".github/workflows/main.yml")
if err != nil {
panic(err)
}
fmt.Println(wf.Name)
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
1.0.0latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.