-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
40 lines (38 loc) · 1.11 KB
/
action.yml
File metadata and controls
40 lines (38 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#Sample PR let's see if this works
# And thisLine
name: 'Hello World PR'
description: 'Greet someone'
inputs:
who-to-greet: # id of input
description: 'Who to greet'
required: true
default: 'World'
outputs:
random-number:
description: "Random number"
value: ${{ steps.random-number-generator.outputs.random-id }}
runs:
using: "composite"
steps:
#- run: echo Hello Man ${{ inputs.who-to-greet }}
#- run: ${GITHUB_ACTION_PATH//\\//}/good_morning.sh
- run: |
echo Hello4
echo Hello ${{ inputs.who-to-greet }}
ls
echo executing the bash script awesome !!
bash ./good_morning.sh
shell: powershell
# - id: random-number-generator
# run: echo "::set-output name=random-id::$(echo $RANDOM)"
# shell: bash
# new version
# echo Hello ${{ inputs.who-to-greet }}
# echo ${{ github.action_path }}
#ls -lha
#cd scripts
#chmod +x *.sh
# ${GITHUB_ACTION_PATH//\\//}/scripts/good_morning.sh
## echo {{ github.workspace }}
# echo "${{ github.action_path }}" >> $GITHUB_PATH
# ./scripts/good_morning.sh