We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9a1bd53 + 84f88e5 commit 33ea15dCopy full SHA for 33ea15d
.github/workflows/delivery.yaml
@@ -37,12 +37,23 @@ jobs:
37
echo "proceed=false" >> "$GITHUB_ENV"
38
fi
39
40
+ - name: Save .github directory
41
+ if: env.proceed == 'true'
42
+ run: |
43
+ cp -rf .github ~/.github
44
+
45
- name: Setup evaluation branch
46
if: env.proceed == 'true'
47
run: |
48
git checkout -b evaluation origin/evaluation || git checkout -b evaluation
49
git merge origin/main || (git checkout --theirs . && git add -A)
50
51
+ - name: Restore .github directory
52
53
54
+ rm -rf .github
55
+ mv ~/.github .github
56
57
- name: Partial cleanup of forbidden files
58
59
uses: ./.github/actions/cleanup_partial
0 commit comments