Skip to content

Commit

Permalink
Fix the branch in the CI workflow
Browse files Browse the repository at this point in the history
Turns out that the example from the GitHub workflows repository needs the
actual branch name.
  • Loading branch information
seilis committed Nov 16, 2024
1 parent 30cbc8a commit 00227f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: CI

on:
push:
branches: [ $default-branch ]
branches: [ "main" ]
pull_request:
branches: [ $default-branch ]
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always
Expand Down

0 comments on commit 00227f2

Please sign in to comment.