├── .gitignore ├── .replit ├── LICENSE ├── Makefile ├── README.md ├── examples.txt ├── examples ├── actions │ └── actions.yml ├── context-expressions │ └── context-expressions.yml ├── context-variables │ └── context-variables.yml ├── environment-variables │ └── environment-variables.yml ├── event-triggers │ └── event-triggers.yml ├── hello-world │ └── hello-world.yml ├── job-matrix │ └── job-matrix.yml ├── job-ordering │ └── job-ordering.yml ├── outputs │ └── outputs.yml └── parallel-jobs │ └── parallel-jobs.yml ├── generate.go ├── go.mod ├── go.sum ├── netlify.toml ├── replit.nix ├── static └── site.css └── templates ├── example.tmpl └── index.tmpl /.gitignore: -------------------------------------------------------------------------------- 1 | public/ -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/.replit -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/README.md -------------------------------------------------------------------------------- /examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/examples.txt -------------------------------------------------------------------------------- /examples/actions/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/examples/actions/actions.yml -------------------------------------------------------------------------------- /examples/context-expressions/context-expressions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/examples/context-expressions/context-expressions.yml -------------------------------------------------------------------------------- /examples/context-variables/context-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/examples/context-variables/context-variables.yml -------------------------------------------------------------------------------- /examples/environment-variables/environment-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/examples/environment-variables/environment-variables.yml -------------------------------------------------------------------------------- /examples/event-triggers/event-triggers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/examples/event-triggers/event-triggers.yml -------------------------------------------------------------------------------- /examples/hello-world/hello-world.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/examples/hello-world/hello-world.yml -------------------------------------------------------------------------------- /examples/job-matrix/job-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/examples/job-matrix/job-matrix.yml -------------------------------------------------------------------------------- /examples/job-ordering/job-ordering.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/examples/job-ordering/job-ordering.yml -------------------------------------------------------------------------------- /examples/outputs/outputs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/examples/outputs/outputs.yml -------------------------------------------------------------------------------- /examples/parallel-jobs/parallel-jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/examples/parallel-jobs/parallel-jobs.yml -------------------------------------------------------------------------------- /generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/generate.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/go.sum -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/netlify.toml -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/replit.nix -------------------------------------------------------------------------------- /static/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/static/site.css -------------------------------------------------------------------------------- /templates/example.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/templates/example.tmpl -------------------------------------------------------------------------------- /templates/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macintoshpie/ghactionsbyexample/HEAD/templates/index.tmpl --------------------------------------------------------------------------------