We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7fd370 commit 202938eCopy full SHA for 202938e
1 file changed
.github/workflows/update.yml .github/workflows/run.yml.github/workflows/update.yml renamed to .github/workflows/run.yml
@@ -1,10 +1,23 @@
1
-name: update
+name: run
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ job:
7
+ description: 'which job to run'
8
+ type: string
9
+ required: false
10
11
jobs:
12
+ # ╔═════════════════════════════════════════════════════╗
13
+ # ║ ║
14
15
+ # ║ CHECK FOR AVAILABLE UPDATES ║
16
17
18
+ # ╚═════════════════════════════════════════════════════╝
19
update:
20
+ if: ${{ github.event.inputs.job == 'update' }}
21
runs-on: ubuntu-latest
22
23
permissions:
0 commit comments