Skip to content

Commit a6d4bd2

Browse files
authored
Create temp.yml
test workflow
1 parent 9250653 commit a6d4bd2

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/temp.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: DataMiner CI Automation
2+
on:
3+
push:
4+
branches: []
5+
tags:
6+
- '[0-9]+.[0-9]+.[0-9]+.[0-9]+'
7+
workflow_dispatch:
8+
jobs:
9+
CI:
10+
if: inputs.referenceType == 'tag'
11+
runs-on: ubuntu-latest
12+
steps:
13+
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
14+
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
15+
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
16+
- name: Check out repository code
17+
uses: actions/checkout@v4
18+
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
19+
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
20+
- name: List files in the repository
21+
run: |
22+
ls ${{ github.workspace }}
23+
- run: echo "🍏 This job's status is ${{ job.status }}."

0 commit comments

Comments
 (0)