We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce3e861 commit e28985cCopy full SHA for e28985c
.github/workflows/ci-dispatch.yml
@@ -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
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
@@ -0,0 +1,7 @@
+name: CI Push
+on: [push, pull_request]
0 commit comments