mirror of
https://github.com/finegrain-ai/refiners.git
synced 2024-11-09 15:02:01 +00:00
add a way to run CI on external PRs using a label
This commit is contained in:
parent
3ff7719cb8
commit
c27fd62fc5
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -1,9 +1,13 @@
|
|||
name: CI
|
||||
|
||||
on: push
|
||||
on:
|
||||
push:
|
||||
pull_request_target:
|
||||
types: [labeled]
|
||||
|
||||
jobs:
|
||||
lint_and_typecheck:
|
||||
if: ${{ github.event.name == 'push' || github.event.label.name == 'run-ci' }}
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
|
Loading…
Reference in a new issue