Skip to content

Commit d464bcf

Browse files
Create dummy workflow for integration tests (#106)
To manually trigger a workflow in a branch, a workflow with the same name needs to exist in master. This adds such a workflow.
1 parent dbe14b6 commit d464bcf

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Dummy workflow file so that the corresponding workflow
2+
# can be manually triggered in branches other than master.
3+
name: Integration tests
4+
5+
on:
6+
workflow_dispatch:
7+
inputs:
8+
commitId:
9+
description: 'description'
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Dummy step
16+
run: echo "Hello, World!"

0 commit comments

Comments
 (0)