An open API service indexing awesome lists of open source software.

https://github.com/managedkaos/print-env

Print env from an event
https://github.com/managedkaos/print-env

Last synced: 9 months ago
JSON representation

Print env from an event

Awesome Lists containing this project

README

          

# Environment Printer
The Environment Printer will prints the environment variables and `$GITHUB_EVENT_PATH` to the log when run as an Action.

Use this Action as a sidecar to your Workflows to see the environment variables and JSON data.

# Secrets
- N/A

# Environment Variables
- N/A

# Arguments
- N/A

# Examples
Here's an example workflow that uses the Environment Printer action.

```
workflow "debug" {
on = "push"
resolves = "print-env"
}

action "print-env" {
uses = "managedkaos/print-env@master"
}

```