feat: prepare for new search modal #756
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CircleCI doesn't automatically run builds after a draft PR is marked "ready for review" | |
# so this is a github action to force it to do so. | |
name: ZZ-Cross-CI Trigger CI after "Draft" -> "Ready for Review" | |
on: | |
pull_request: | |
types: [ready_for_review] | |
permissions: | |
contents: read | |
jobs: | |
trigger: | |
permissions: | |
contents: none | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger release | |
run: | | |
curl \ | |
-X POST \ | |
--header "Content-Type: application/json" \ | |
-d "{\"branch\": \"$GITHUB_HEAD_REF\"}" \ | |
https://circleci.com/api/v1.1/project/github/artsy/eigen/build?circle-token=${{ secrets.CircleToken }} |