-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (32 loc) · 754 Bytes
/
Copy pathtest.yaml
File metadata and controls
33 lines (32 loc) · 754 Bytes
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
name: testtest Workflow
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
tags:
description: 'Test scenario tags'
required: false
type: boolean
environment:
description: 'Environment to run tests againstt'
type: environment
required: true
jobs :
Simple-Job:
runs-on: ubuntu-latest
steps:
- name: first JS Action
id : id
uses: actions/hello-world-javascript-action@v1
with:
who-to-greet: 'Zaher Abb'
- name: Log
run : echo "${{steps.id.outputs.time}}"