Skip to content

Commit

Permalink
.github: add manual control on action run
Browse files Browse the repository at this point in the history
  • Loading branch information
khancyr authored and tridge committed Dec 30, 2020
1 parent 401e5c2 commit 8be9b44
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test_chibios.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: test chibios

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

# paths:
# - "*"
# - "!README.md" <-- don't rebuild on doc change
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_linux_sbc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test Linux SBC

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
# paths:
# - "*"
# - "!README.md" <-- don't rebuild on doc change
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_replay.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test replay

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
# paths:
# - "*"
# - "!README.md" <-- don't rebuild on doc change
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_sitl_copter.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test copter

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
# paths:
# - "*"
# - "!README.md" <-- don't rebuild on doc change
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_sitl_periph.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test ap_periph

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
# paths:
# - "*"
# - "!README.md" <-- don't rebuild on doc change
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_sitl_plane.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test plane

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
# paths:
# - "*"
# - "!README.md" <-- don't rebuild on doc change
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_sitl_rover.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test rover

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
# paths:
# - "*"
# - "!README.md" <-- don't rebuild on doc change
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_sitl_sub.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test sub

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
# paths:
# - "*"
# - "!README.md" <-- don't rebuild on doc change
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_sitl_tracker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test tracker

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
# paths:
# - "*"
# - "!README.md" <-- don't rebuild on doc change
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_unit_tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test unit tests

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
# paths:
# - "*"
# - "!README.md" <-- don't rebuild on doc change
Expand Down

0 comments on commit 8be9b44

Please sign in to comment.