Skip to content

Commit

Permalink
Merge pull request #15 from FRC830/fix/auto-build-master
Browse files Browse the repository at this point in the history
CI/CD: Use correct branch name "master" instead of "main"
  • Loading branch information
nick-mcgill authored Feb 11, 2024
2 parents d7bbfcd + 9b2e52a commit e8cb0e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
name: CI

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch.
# events but only for the master branch.
on:
push:
branches: [ main ]
branches: [ master ]
pull_request:
branches: [ main ]
branches: [ master ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down
2 changes: 1 addition & 1 deletion src/main/include/NeoDriveMotor.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <rev/CANSparkMAX.h>
#include <rev/CANSparkMax.h>
#include "Interfaces/SwerveDriveMotor.h"
#include "units/velocity.h"

Expand Down

0 comments on commit e8cb0e8

Please sign in to comment.