From 79ff9646ba37b9b3f45269c7735dd5799d82ab06 Mon Sep 17 00:00:00 2001 From: Istvan Kiss Date: Sat, 8 Jun 2024 14:07:44 +0200 Subject: [PATCH] Change target-branch to docs/develop in dependabot.yml --- .github/dependabot.yml | 1 + .readthedocs.yaml | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0e0a252eb6..470629cc14 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -14,5 +14,6 @@ updates: - "documentation" - "dependencies" - "ci:docs-only" + target-branch: "docs/develop" reviewers: - "samjwu" diff --git a/.readthedocs.yaml b/.readthedocs.yaml index b51196933a..563a4aace7 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -22,9 +22,9 @@ build: - "graphviz" # For dot graphs in doxygen jobs: post_checkout: - - if [ -d ../llvm-project ]; then rm -r ../llvm-project; fi - - if [ -d ../clr ]; then rm -r ../clr; fi - - if [ -d ../ROCR-Runtime ]; then rm -r ../ROCR-Runtime; fi + - if [ -d ../llvm-project ]; then rm -rf ../llvm-project; fi + - if [ -d ../clr ]; then rm -rf ../clr; fi + - if [ -d ../ROCR-Runtime ]; then rm -rf ../ROCR-Runtime; fi - git clone --depth=1 --single-branch --branch rocdoc-195 https://github.com/StreamHPC/llvm-project.git ../llvm-project - git clone --depth=1 --single-branch --branch develop https://github.com/ROCm/clr.git ../clr - git clone --depth=1 --single-branch --branch master https://github.com/ROCm/ROCR-Runtime.git ../ROCR-Runtime