Skip to content

Commit e28985c

Browse files
author
mikee47
committed
Add github workflow
1 parent ce3e861 commit e28985c

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/workflows/ci-dispatch.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI Dispatch
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
sming_repo:
7+
description: 'Full URL for Sming repository'
8+
default: 'https://github.com/SmingHub/Sming'
9+
type: string
10+
sming_branch:
11+
description: 'Sming branch to run against'
12+
default: 'develop'
13+
type: string
14+
15+
jobs:
16+
build:
17+
uses: SmingHub/Sming/.github/workflows/library.yml@develop
18+
with:
19+
sming_repo: ${{ inputs.sming_repo }}
20+
sming_branch: ${{ inputs.sming_branch }}

.github/workflows/ci-push.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: CI Push
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
uses: SmingHub/Sming/.github/workflows/library.yml@develop

0 commit comments

Comments
 (0)