Skip to content

Commit 887d6a9

Browse files
Fix #15, Attempt to make the workflow appear in the Actions tab.
1 parent e1f619d commit 887d6a9

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,15 @@ on:
66
branches:
77
- pipeline
88
workflow_dispatch: # This triggers the workflow when a webhook is received
9-
9+
inputs:
10+
branch:
11+
description: 'The branch of the submodule the workflow was triggered for'
12+
required: true
13+
type: string
14+
repository:
15+
description: 'The repository of the submodule the workflow was triggered for'
16+
required: true
17+
type: string
1018

1119
jobs:
1220
build:
@@ -46,4 +54,4 @@ jobs:
4654
git push -f
4755
else
4856
echo "Nothing to commit"
49-
fi
57+
fi

0 commit comments

Comments
 (0)