Skip to content

Commit

Permalink
Add manual trigger for CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Molkree authored and pdxjohnny committed May 13, 2021
1 parent 3361493 commit 967a03e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: cve-bin-tool

on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:
inputs:
longTests:
description: 'Set true to run long tests manually'
required: false
default: 'false'

jobs:
isort:
Expand Down Expand Up @@ -153,6 +161,7 @@ jobs:
path: ~/.cache/cve-bin-tool
key: ${{ runner.os }}-cve-bin-tool-${{ steps.get-date.outputs.date }}
- uses: technote-space/get-diff-action@v4
if: ${{ github.event.inputs.longTests != 'true' }}
with:
PATTERNS: |
cve_bin_tool/checkers/*.py
Expand Down

0 comments on commit 967a03e

Please sign in to comment.