Skip to content

Commit

Permalink
[MegaLinter] Apply linters fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
atodorov committed Feb 26, 2024
1 parent 324aff1 commit 685e192
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
16 changes: 8 additions & 8 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# action.yml
name: 'Hello World'
description: 'Greet someone and record the time'
name: "Hello World"
description: "Greet someone and record the time"
inputs:
who-to-greet: # id of input
description: 'Who to greet'
who-to-greet: # id of input
description: "Who to greet"
required: true
default: 'World'
default: "World"
outputs:
time: # id of output
description: 'The time we greeted you'
description: "The time we greeted you"
runs:
using: 'docker'
image: 'Dockerfile'
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.who-to-greet }}
4 changes: 1 addition & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@ echo "++++ triggering event"
cat "$GITHUB_EVENT_PATH"
echo "+++++ END"


echo "++++ list $GITHUB_WORKSPACE"
ls -laR "$GITHUB_WORKSPACE"
echo "+++++ END"


echo "time=$time" >> "$GITHUB_OUTPUT"
echo "time=$time" >>"$GITHUB_OUTPUT"

0 comments on commit 685e192

Please sign in to comment.