Skip to content

Commit

Permalink
Adapt CI trigger to run on PR from fork.
Browse files Browse the repository at this point in the history
  • Loading branch information
kklein committed Aug 4, 2024
1 parent b0be07c commit 60b7653
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
name: CI
on: [push]
on:
# We would like to trigger for CI for any pull request action -
# both from QuantCo's branches as well as forks.
pull_request:
types: [opened, labeled, unlabeled, synchronize]
# In addition to pull requests, we want to run CI for pushes
# to the main branch and tags.
push:
branches:
- "main"
tags:
- "v*"

# Automatically stop old builds on the same branch/PR
concurrency:
Expand Down

0 comments on commit 60b7653

Please sign in to comment.