mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-23 13:48:58 -05:00
11 lines
286 B
YAML
11 lines
286 B
YAML
name: Dangerous git Checkout
|
|
description: "Git Checkout from PR code so we can run checks from forks"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
fetch-depth: 2
|