Skip to content

Commit

Permalink
Update build workflows to allow manual runs (#7523)
Browse files Browse the repository at this point in the history
# Description

This updates the build workflow to allow manual runs for testing feature
branch changes

## Type of change

<!--

Please select **one** of the following options that describes your
change and delete the others. Clearly identifying the type of change you
are making will help us review your PR faster, and is used in authoring
release notes.

If you are making a bug fix or functionality change to Radius and do not
have an associated issue link please create one now.

-->
- This pull request is a minor refactor, code cleanup, test improvement,
or other maintenance task and doesn't change the functionality of Radius
(issue link optional).

<!--

Please update the following to link the associated issue. This is
required for some kinds of changes (see above).

-->

Fixes: #issue_number

Signed-off-by: sk593 <[email protected]>
  • Loading branch information
sk593 authored Apr 24, 2024
1 parent 90705a8 commit 8b0c35d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

name: Build and Test
on:
# Enable manual trigger
workflow_dispatch:
push:
branches:
- main
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/functional-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ permissions:
packages: write # Required for uploading the package

on:
# Enable manual trigger
workflow_dispatch:
schedule:
# Run every 4 hours on weekdays.
- cron: "30 0,4,8,12,16,20 * * 1-5"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/validate-bicep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

name: Validate Bicep Code
on:
# Enable manual trigger
workflow_dispatch:
pull_request:
branches:
- main
Expand Down

0 comments on commit 8b0c35d

Please sign in to comment.