File tree Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 21
21
22
22
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23
23
hs_err_pid *
24
+
25
+ # Intellij
26
+ .idea /
Original file line number Diff line number Diff line change
1
+ name : ' Hello World'
2
+ description : ' Greet someone'
3
+ inputs :
4
+ who-to-greet : # id of input
5
+ description : ' Who to greet'
6
+ required : true
7
+ default : ' World'
8
+ outputs :
9
+ random-number :
10
+ description : " Random number"
11
+ value : ${{ steps.random-number-generator.outputs.random-id }}
12
+ runs :
13
+ using : " composite"
14
+ steps :
15
+ - run : echo Hello ${{ inputs.who-to-greet }}.
16
+ shell : bash
17
+ # - id: random-number-generator
18
+ # run: echo "::set-output name=random-id::$(echo $RANDOM)"
19
+ # shell: bash
20
+ - run : echo "${{ github.action_path }}" >> $GITHUB_PATH
21
+ shell : bash
22
+ - run : good_morning.sh
23
+ shell : bash
Original file line number Diff line number Diff line change
1
+ echo " Hello Good Morning !!"
You can’t perform that action at this time.
0 commit comments