Skip to content

Commit b8527ac

Browse files
Create print_variables.yml
0 parents  commit b8527ac

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: PRINTING WORKFLOW
2+
3+
on:
4+
push:
5+
pull_request:
6+
release:
7+
create:
8+
tags:
9+
- '*'
10+
issues:
11+
issue_comment:
12+
pull_request_review:
13+
pull_request_review_comment:
14+
milestone:
15+
label:
16+
repository_dispatch:
17+
18+
jobs:
19+
print-variables:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Print actions github builtin variables
23+
env:
24+
GITHUB_CONTEXT: ${{ toJSON(github.event) }}
25+
run: echo "$GITHUB_CONTEXT"
26+
27+
- name: no name
28+
if: ${{ github.event.ref_type == 'tag' }}
29+
run: echo ${{ github.event.ref_type }}

0 commit comments

Comments
 (0)