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
- Host: GitHub
- URL: https://github.com/managedkaos/print-env
- Owner: managedkaos
- Created: 2019-04-05T05:03:18.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-16T07:03:42.000Z (about 7 years ago)
- Last Synced: 2025-09-11T08:45:54.328Z (10 months ago)
- Language: Shell
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}
```