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.
1 parent d8a7cf5 commit 8cf8a47Copy full SHA for 8cf8a47
.github/workflows/build.yaml
@@ -36,7 +36,16 @@ jobs:
36
sed -i "s|branch = clean-wire-server-docs|branch = ${CURRENT_BRANCH}|g" .gitmodules
37
38
cat .gitmodules
39
- make sanitize-pr
40
make build
41
+ - name: Clone wire-server and `make sanitize-pr`
42
+ # if this fails, you need to run it on your PR and commit the changes it makes.
43
+ run: |
44
+ CURRENT_REPO_URL="https://github.com/${GITHUB_REPOSITORY}.git"
45
+ BRANCH_NAME=${GITHUB_REF##*/}
46
+
47
+ git clone --branch develop "$CURRENT_REPO_URL" wire-server -b "$BRANCH_NAME"
48
+ cd wire-server
49
+ make sanitize-pr
50
51
# tasks to update the submodule reference in wire-docs repo are yet to be added
0 commit comments