We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff3189f commit 662662aCopy full SHA for 662662a
.github/workflows/experimental-pr.yaml
@@ -13,14 +13,19 @@ jobs:
13
pull-requests: write
14
15
steps:
16
- - name: Checkout the PR branch
+ - name: Checkout main branch
17
uses: actions/checkout@v4
18
with:
19
- ref: ${{ github.event.pull_request.head.ref }}
+ ref: main
20
fetch-depth: 0
21
22
- - name: Create/Update the experimental branch from main
23
- run: git push -f origin main:refs/heads/experimental
+ - name: Create the experimental branch
+ run: git push origin main:refs/heads/experimental
24
+
25
+ - name: Checkout the PR branch
26
+ uses: actions/checkout@v4
27
+ with:
28
+ fetch-depth: 0
29
30
- name: Create PR to experimental
31
env:
0 commit comments