Skip to content

Commit

Permalink
Added default branch for matrix job
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitriy-b committed Oct 16, 2024
1 parent 20486e0 commit 2a6d76a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/dashboard_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
schedule:
- cron: '0 12 * * *' # Run every day at 12:00 UTC
workflow_dispatch:
inputs:
branch:
description: "Branch to run tests on"
required: true
default: "reflow"
push:
branches:
- reflow
Expand Down Expand Up @@ -86,7 +91,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: reflow
ref: ${{ github.event.inputs.branch }}

- name: Download dependencies
run: go get -v ./...
Expand Down

0 comments on commit 2a6d76a

Please sign in to comment.