diff options
author | 2021-05-15 21:24:12 -0700 | |
---|---|---|
committer | 2021-05-15 21:24:35 -0700 | |
commit | 921215f4ef57cbaba4a11fe24213a5c50f9f88e0 (patch) | |
tree | 8d4511e7046e8939e7de908d31f3d38408a5c5d0 | |
parent | 016efe592323fcc79848f520dd95589269b0ad2c (diff) | |
download | notion-921215f4ef57cbaba4a11fe24213a5c50f9f88e0.tar.gz notion-921215f4ef57cbaba4a11fe24213a5c50f9f88e0.tar.zst notion-921215f4ef57cbaba4a11fe24213a5c50f9f88e0.zip |
fix: Fix `master` references in CI (should be `main`)
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 08dbc35..f15e74e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,9 +2,9 @@ name: Build on: push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] jobs: static-analysis: |