Skip to content

Commit

Permalink
[Chore] Run CI on 'main' and 'staging'
Browse files Browse the repository at this point in the history
Problem: Currently CI is only run on pull requests. However, there is a
'deploy' job that is supposed to be run on 'staging' branch.

Solution: Run CI on pushes to 'main' and 'staging' branches.
  • Loading branch information
rvem committed Sep 2, 2024
1 parent 17219a0 commit 1c53aac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

name: CI

on: [pull_request]
on:
pull_request:
branches: main

jobs:
validate:
Expand Down

0 comments on commit 1c53aac

Please sign in to comment.