Skip to content

Commit

Permalink
Merge pull request #5626 from grom72/gha-fixes
Browse files Browse the repository at this point in the history
common: enable manual trigger of some builds
  • Loading branch information
grom72 authored May 15, 2023
2 parents 5bfd7d9 + 799236d commit 7f6fdab
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bandit.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Run the Bandit scanner for finding vulnerabilities in the python code.
name: bandit

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

env:
GITHUB_REPO: pmem/pmdk
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This workflow does not use docker containers.
name: CodeQL

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

env:
GITHUB_REPO: pmem/pmdk
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# checks basic builds with various compilers and executes all sets of tests.
name: PMDK

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

env:
GITHUB_REPO: pmem/pmdk
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ras_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# utils/gha-runners/run-ras-linux.yml
name: RAS_Linux

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
linux:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This workflow is run on 'self-hosted' runners.
name: PMDK_runners

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
linux:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/unittest_long.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
name: Long_run_tests

on:
workflow_dispatch:
schedule:
- cron: '5 0 * * 6' # At 00:05 on Saturday.

Expand Down

0 comments on commit 7f6fdab

Please sign in to comment.