We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d38e0d8 commit a9adbecCopy full SHA for a9adbec
1 file changed
.github/workflows/cicd-1-pull-request-devtest.yaml
@@ -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
0 commit comments