generated from actions/hello-world-docker-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Customize imported template for the real code
- Loading branch information
1 parent
6d587e0
commit 0efc00b
Showing
5 changed files
with
27 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,18 @@ | ||
name: Hello, World! | ||
description: Greet someone and record the time | ||
author: GitHub Actions | ||
name: Github Workflow Stats | ||
description: Export Github Workflow stats into Postgres | ||
author: Fedor Dikarev | ||
branding: | ||
icon: activity | ||
color: yellow | ||
|
||
# Define your inputs here. | ||
inputs: | ||
who-to-greet: | ||
description: Who to greet | ||
db_uri: | ||
description: Postgres DB URI | ||
required: true | ||
default: World | ||
|
||
# Define your outputs here. | ||
outputs: | ||
time: | ||
description: The time we greeted you | ||
|
||
runs: | ||
using: docker | ||
image: Dockerfile | ||
image: "docker://yatheo/gh-workflow-stats-action:latest" | ||
env: | ||
INPUT_WHO_TO_GREET: ${{ inputs.who-to-greet }} | ||
DB_URI: ${{ inputs.db_uri }} |