Skip to content

Commit 27fff5e

Browse files
authored
Fix CI so that it runs on push and PR for main branch (#2227)
It appears we recently renamed the primary branch from master to main but did not update the CI configuration and thus CI does not currently automatically run on push/PR for the primary branch i.e. main.
1 parent 26ee361 commit 27fff5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ruby.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ name: CI
44
on:
55
push:
66
# The `github-workflow-test` can be used to test changes without making a PR
7-
branches: [master, github-workflow-test]
7+
branches: [main, github-workflow-test]
88
pull_request:
9-
branches: [master]
9+
branches: [main]
1010

1111
jobs:
1212
linelint:

0 commit comments

Comments
 (0)