-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (43 loc) · 1.04 KB
/
concurrency_call.yml
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
41
42
43
name: ConcurrencyCallCheck
concurrency:
group: dummy-group
on: # yamllint disable-line rule:truthy
workflow_dispatch:
workflow_call:
inputs:
build-type:
required: true
type: string
runner-type:
default: ubuntu-latest
required: false
type: string
jobs:
CallTest:
env:
GITHUB_JOB_OVERRIDDEN: CallTest-${{inputs.build-type}}
runs-on: ${{inputs.runner-type}}
name: CallTest-${{inputs.build-type}}
steps:
- uses: hmarr/debug-action@1201a20fc9d278ddddd5f0f46922d06513892491
- run: |
echo github
cat << 'EOF'
${{ toJSON(github) }}
EOF
echo runner
cat << 'EOF'
${{ toJSON(runner) }}
EOF
echo env
cat << 'EOF'
${{ toJSON(env) }}
EOF
echo job
cat << 'EOF'
${{ toJSON(job) }}
EOF
env | sort
echo GITHUB_ENV
cat $GITHUB_ENV
echo 'GLOBALLY_SET_ENV=abrakadabra' >> $GITHUB_ENV