Skip to content

Commit a9adbec

Browse files
authored
feat: [DTOSS-11798] initial versions of the new workflows (#1791)
feat: initial versions of the new workflows, to be able to test iterations from branch revert the workflow
1 parent d38e0d8 commit a9adbec

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI/CD pull request - devtest
2+
3+
on:
4+
push:
5+
tags:
6+
- 'devtest'
7+
8+
jobs:
9+
print-debug-info:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Display Information
13+
run: |
14+
echo "Workflow triggered by tag!"
15+
echo "--------------------------------------"
16+
echo "Tag/Ref Name : $GITHUB_REF"
17+
echo "Commit Hash : $GITHUB_SHA"
18+
echo "Triggered By : $GITHUB_ACTOR"
19+
echo "Event Name : $GITHUB_EVENT_NAME"
20+
echo "--------------------------------------"

0 commit comments

Comments
 (0)