From 6bf61c974025e128e16f26c65f382c4590856d11 Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Tue, 15 Oct 2024 14:47:37 +0200 Subject: [PATCH 01/20] Removed automatic testing-docs update from testing-docs.yml workflow --- .github/workflows/testing-docs.yml | 27 ++++----------------------- 1 file changed, 4 insertions(+), 23 deletions(-) diff --git a/.github/workflows/testing-docs.yml b/.github/workflows/testing-docs.yml index 886c66b6ad..454bbdfbd7 100644 --- a/.github/workflows/testing-docs.yml +++ b/.github/workflows/testing-docs.yml @@ -12,7 +12,6 @@ on: permissions: contents: write - pull-requests: write # 'write' access to pull requests in order to update test documentation automatically jobs: testing-docs: @@ -40,31 +39,13 @@ jobs: if: env.GIT_DIFF run: make build-testing-docs - - name: Check for changes and update automatically + - name: Check for changes if: env.GIT_DIFF - id: check_changes_and_update + id: check_changes run: | git show HEAD:scripts/test_doc/test_documentation.md > committed_file.md cp scripts/test_doc/test_documentation.md generated_file.md if ! diff -q generated_file.md committed_file.md; then - echo "Documentation for integration tests is out of date. Updating and pushing changes..." - cp generated_file.md scripts/test_doc/test_documentation.md - - if [ -n "$GITHUB_HEAD_REF" ]; then - branch=$GITHUB_HEAD_REF - else - branch=${GITHUB_REF#refs/heads/} - fi - - git fetch origin $branch - git checkout $branch - - cp generated_file.md scripts/test_doc/test_documentation.md - git config user.name "github-actions" - git config user.email "github-actions@github.com" - git add scripts/test_doc/test_documentation.md - git commit -m "Update testing documentation" - - git push origin "$branch" - + echo "Documentation for integration tests is out of date." + exit 1 fi \ No newline at end of file From 37f1e1e34e26c3388336cb1ff5f5b7cc1068cd4f Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Tue, 15 Oct 2024 15:00:26 +0200 Subject: [PATCH 02/20] Testing testing-docs script --- tests/integration/changeover.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/changeover.go b/tests/integration/changeover.go index b18ea38f4b..71615767f2 100644 --- a/tests/integration/changeover.go +++ b/tests/integration/changeover.go @@ -14,6 +14,7 @@ import ( // * creates a transfer channel between the two chains // * transitions the standalone chain to a consumer chain // * confirms that no extra transfer channel is created, thus only one transfer channel and one CCV channel exist. +// test func (suite *CCVTestSuite) TestRecycleTransferChannel() { consumerKeeper := suite.consumerApp.GetConsumerKeeper() From 0cdf72e316c722fbdae0a5e10f3fc2f0d1099143 Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Tue, 15 Oct 2024 15:02:34 +0200 Subject: [PATCH 03/20] Testing testing-docs script --- tests/integration/changeover.go | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/integration/changeover.go b/tests/integration/changeover.go index 71615767f2..b18ea38f4b 100644 --- a/tests/integration/changeover.go +++ b/tests/integration/changeover.go @@ -14,7 +14,6 @@ import ( // * creates a transfer channel between the two chains // * transitions the standalone chain to a consumer chain // * confirms that no extra transfer channel is created, thus only one transfer channel and one CCV channel exist. -// test func (suite *CCVTestSuite) TestRecycleTransferChannel() { consumerKeeper := suite.consumerApp.GetConsumerKeeper() From db260c2d37435af589b797e0078e6c9351601b0b Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Tue, 15 Oct 2024 15:02:34 +0200 Subject: [PATCH 04/20] Added testing-docs-check.yml into Workflow --- .github/workflows/testing-docs-check.yml | 51 ++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/testing-docs-check.yml diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml new file mode 100644 index 0000000000..80d2eb2441 --- /dev/null +++ b/.github/workflows/testing-docs-check.yml @@ -0,0 +1,51 @@ +name: Check testing docs nightly +on: + schedule: + - cron: "0 12 * * *" + +jobs: + check-testing-docs: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: "1.22" + check-latest: true + cache: true + cache-dependency-path: go.sum + + - name: Generate testing docs + run: make build-testing-docs + + - name: Check for changes + id: check_changes + run: | + git show HEAD:scripts/test_doc/test_documentation.md > committed_file.md + cp scripts/test_doc/test_documentation.md generated_file.md + if ! diff -q generated_file.md committed_file.md; then + echo "changes_detected=true" >> $GITHUB_OUTPUT + else + echo "changes_detected=false" >> $GITHUB_OUTPUT + fi + + - name: Create Pull Request + if: steps.check_changes.outputs.changes_detected == 'true' + uses: peter-evans/create-pull-request@v7 + with: + token: ${{ secrets.PRBOT_PAT }} + commit-message: "docs: update testing documentation" + title: "docs: update testing documentation" + branch: "bot/update-testing-docs" + delete-branch: true + body: | + This PR updates the testing documentation. + Please review the changes and merge if everything looks correct. + From 6b839bf0d69474bbda0c458958f5ebe15c530c20 Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Tue, 15 Oct 2024 22:05:30 +0200 Subject: [PATCH 05/20] Renamed testing-docs.yml --- .github/workflows/testing-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing-docs.yml b/.github/workflows/testing-docs.yml index 454bbdfbd7..a520f750f0 100644 --- a/.github/workflows/testing-docs.yml +++ b/.github/workflows/testing-docs.yml @@ -1,4 +1,4 @@ -name: Generate testing docs +name: Check up-to-date testing docs on: workflow_call: From 58c5e38c49d18c2afa1679d17cf2e077826e4000 Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Tue, 15 Oct 2024 22:14:41 +0200 Subject: [PATCH 06/20] Fixed step id in testing-docs-check.yml --- .github/workflows/testing-docs-check.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index 80d2eb2441..7ffdf20b68 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -25,8 +25,8 @@ jobs: - name: Generate testing docs run: make build-testing-docs - - name: Check for changes - id: check_changes + - name: Check for changes in integration tests documentation + id: check_changes_pr run: | git show HEAD:scripts/test_doc/test_documentation.md > committed_file.md cp scripts/test_doc/test_documentation.md generated_file.md @@ -34,7 +34,6 @@ jobs: echo "changes_detected=true" >> $GITHUB_OUTPUT else echo "changes_detected=false" >> $GITHUB_OUTPUT - fi - name: Create Pull Request if: steps.check_changes.outputs.changes_detected == 'true' From 07863ce7c5784bee95d0c19b6f9680bae0716a01 Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Tue, 15 Oct 2024 22:27:25 +0200 Subject: [PATCH 07/20] Testing testing-docs-check script --- .github/workflows/testing-docs-check.yml | 2 +- tests/integration/changeover.go | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index 7ffdf20b68..d29c452746 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -1,7 +1,7 @@ name: Check testing docs nightly on: schedule: - - cron: "0 12 * * *" + - cron: "30 20 * * *" #trigger it in 5 minutes jobs: check-testing-docs: diff --git a/tests/integration/changeover.go b/tests/integration/changeover.go index b18ea38f4b..71615767f2 100644 --- a/tests/integration/changeover.go +++ b/tests/integration/changeover.go @@ -14,6 +14,7 @@ import ( // * creates a transfer channel between the two chains // * transitions the standalone chain to a consumer chain // * confirms that no extra transfer channel is created, thus only one transfer channel and one CCV channel exist. +// test func (suite *CCVTestSuite) TestRecycleTransferChannel() { consumerKeeper := suite.consumerApp.GetConsumerKeeper() From 2c3e6a62e5df91f0743fe00cc27e2ddd32a7ff68 Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Tue, 15 Oct 2024 22:34:25 +0200 Subject: [PATCH 08/20] Testing script fix --- .github/workflows/testing-docs-check.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index d29c452746..16a08dd5f7 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -13,6 +13,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + ref: tk/check-testing-docs-nightly - name: Setup Go uses: actions/setup-go@v5 @@ -43,6 +45,7 @@ jobs: commit-message: "docs: update testing documentation" title: "docs: update testing documentation" branch: "bot/update-testing-docs" + base: tk/check-testing-docs-nightly delete-branch: true body: | This PR updates the testing documentation. From a38a86769795e51270b03b02b8219e71bc84830a Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Tue, 15 Oct 2024 22:34:46 +0200 Subject: [PATCH 09/20] Testing script fix --- .github/workflows/testing-docs-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index 16a08dd5f7..6aaae173db 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -1,7 +1,7 @@ name: Check testing docs nightly on: schedule: - - cron: "30 20 * * *" #trigger it in 5 minutes + - cron: "36 20 * * *" #trigger it in 5 minutes jobs: check-testing-docs: From b37e6561cc44c36386bcab6cba2662ac8adb4ea1 Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Wed, 16 Oct 2024 09:26:10 +0200 Subject: [PATCH 10/20] Testing script fix --- .github/workflows/testing-docs-check.yml | 31 ++++++++++-------------- 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index 6aaae173db..15b1cf3ddc 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -24,7 +24,7 @@ jobs: cache: true cache-dependency-path: go.sum - - name: Generate testing docs + - name: Generate testing-docs run: make build-testing-docs - name: Check for changes in integration tests documentation @@ -33,21 +33,16 @@ jobs: git show HEAD:scripts/test_doc/test_documentation.md > committed_file.md cp scripts/test_doc/test_documentation.md generated_file.md if ! diff -q generated_file.md committed_file.md; then - echo "changes_detected=true" >> $GITHUB_OUTPUT - else - echo "changes_detected=false" >> $GITHUB_OUTPUT - - - name: Create Pull Request - if: steps.check_changes.outputs.changes_detected == 'true' - uses: peter-evans/create-pull-request@v7 - with: - token: ${{ secrets.PRBOT_PAT }} - commit-message: "docs: update testing documentation" - title: "docs: update testing documentation" - branch: "bot/update-testing-docs" - base: tk/check-testing-docs-nightly - delete-branch: true - body: | - This PR updates the testing documentation. - Please review the changes and merge if everything looks correct. + uses: peter-evans/create-pull-request@v7 + with: + token: ${{ secrets.PRBOT_PAT }} + commit-message: "docs: update testing documentation" + title: "docs: update testing documentation" + branch: "bot/update-testing-docs" + base: tk/check-testing-docs-nightly + delete-branch: true + body: | + This PR updates the testing documentation. + Please review the changes and merge if everything looks correct. + From 2d3d8949cd60ed6dcb1bb3a64ffd80c7307aaf2b Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Wed, 16 Oct 2024 10:02:47 +0200 Subject: [PATCH 11/20] Testing script fix --- .github/workflows/testing-docs-check.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index 15b1cf3ddc..0cf131e792 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -33,6 +33,7 @@ jobs: git show HEAD:scripts/test_doc/test_documentation.md > committed_file.md cp scripts/test_doc/test_documentation.md generated_file.md if ! diff -q generated_file.md committed_file.md; then + echo "Documentation for integration tests is out of date.Creating the PR..." uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.PRBOT_PAT }} @@ -44,5 +45,6 @@ jobs: body: | This PR updates the testing documentation. Please review the changes and merge if everything looks correct. + fi From 661169440597cf1bcf78fac9d29181b80f5b658f Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Wed, 16 Oct 2024 14:17:16 +0200 Subject: [PATCH 12/20] Testing testing-docs-check.yml --- .github/workflows/testing-docs-check.yml | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index 0cf131e792..95f9fda21d 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -1,7 +1,13 @@ name: Check testing docs nightly on: - schedule: - - cron: "36 20 * * *" #trigger it in 5 minutes + workflow_call: + pull_request: + merge_group: + push: + branches: + - main + - release/v* + - feat/* jobs: check-testing-docs: @@ -34,17 +40,7 @@ jobs: cp scripts/test_doc/test_documentation.md generated_file.md if ! diff -q generated_file.md committed_file.md; then echo "Documentation for integration tests is out of date.Creating the PR..." - uses: peter-evans/create-pull-request@v7 - with: - token: ${{ secrets.PRBOT_PAT }} - commit-message: "docs: update testing documentation" - title: "docs: update testing documentation" - branch: "bot/update-testing-docs" - base: tk/check-testing-docs-nightly - delete-branch: true - body: | - This PR updates the testing documentation. - Please review the changes and merge if everything looks correct. + fi From fbf09a0d2d050b2d6d75be9f641b8dacd7c996bf Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Wed, 16 Oct 2024 14:18:19 +0200 Subject: [PATCH 13/20] Testing testing-docs-check.yml --- .github/workflows/testing-docs-check.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index 95f9fda21d..01e0dd173e 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -40,7 +40,17 @@ jobs: cp scripts/test_doc/test_documentation.md generated_file.md if ! diff -q generated_file.md committed_file.md; then echo "Documentation for integration tests is out of date.Creating the PR..." - + uses: peter-evans/create-pull-request@v7 + with: + token: ${{ secrets.PRBOT_PAT }} + commit-message: "docs: update testing documentation" + title: "docs: update testing documentation" + branch: "bot/update-testing-docs" + base: tk/check-testing-docs-nightly + delete-branch: true + body: | + This PR updates the testing documentation. + Please review the changes and merge if everything looks correct. fi From 91b946777410d6a0ba47a87aa3722ffa371e5daf Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Wed, 16 Oct 2024 14:27:28 +0200 Subject: [PATCH 14/20] Testing testing-docs-check.yml --- .github/workflows/testing-docs-check.yml | 25 ++++++++++++------------ 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index 01e0dd173e..b50ff124dc 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -30,7 +30,7 @@ jobs: cache: true cache-dependency-path: go.sum - - name: Generate testing-docs + - name: Generate testing docs for PR run: make build-testing-docs - name: Check for changes in integration tests documentation @@ -39,18 +39,17 @@ jobs: git show HEAD:scripts/test_doc/test_documentation.md > committed_file.md cp scripts/test_doc/test_documentation.md generated_file.md if ! diff -q generated_file.md committed_file.md; then - echo "Documentation for integration tests is out of date.Creating the PR..." - uses: peter-evans/create-pull-request@v7 - with: - token: ${{ secrets.PRBOT_PAT }} - commit-message: "docs: update testing documentation" - title: "docs: update testing documentation" - branch: "bot/update-testing-docs" - base: tk/check-testing-docs-nightly - delete-branch: true - body: | - This PR updates the testing documentation. - Please review the changes and merge if everything looks correct. + echo "changes_detected=true" >> $GITHUB_OUTPUT + else + echo "changes_detected=false" >> $GITHUB_OUTPUT fi + + - name: Create Pull Request + if: steps.check_changes.outputs.changes_detected == 'true' + run: | + echo "Changes detected in testing documentation." + echo "A pull request should be created to update the documentation." + + From 34e36cc8e552ec457efcd280e05325262d87025c Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Thu, 17 Oct 2024 07:56:59 +0200 Subject: [PATCH 15/20] Testing testing-docs-check.yml --- .github/workflows/testing-docs-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index b50ff124dc..b4c14157a6 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -45,7 +45,7 @@ jobs: fi - name: Create Pull Request - if: steps.check_changes.outputs.changes_detected == 'true' + if: steps.check_changes.outputs.changes_detected == true run: | echo "Changes detected in testing documentation." echo "A pull request should be created to update the documentation." From dc31686bca2abcf31460f6b37a2cde3d708d3ab7 Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Thu, 17 Oct 2024 08:07:23 +0200 Subject: [PATCH 16/20] Testing testing-docs-check.yml --- .github/workflows/testing-docs-check.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index b4c14157a6..51121c5c57 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -35,14 +35,11 @@ jobs: - name: Check for changes in integration tests documentation id: check_changes_pr + continue-on-error: true run: | git show HEAD:scripts/test_doc/test_documentation.md > committed_file.md cp scripts/test_doc/test_documentation.md generated_file.md - if ! diff -q generated_file.md committed_file.md; then - echo "changes_detected=true" >> $GITHUB_OUTPUT - else - echo "changes_detected=false" >> $GITHUB_OUTPUT - fi + diff -q generated_file.md committed_file.md - name: Create Pull Request if: steps.check_changes.outputs.changes_detected == true From f8ce88218161f4392ebafa5eb54e7e7f12b8dd4c Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Thu, 17 Oct 2024 08:08:01 +0200 Subject: [PATCH 17/20] Testing testing-docs-check.yml --- .github/workflows/testing-docs-check.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index 51121c5c57..99f8ccef1d 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -42,7 +42,6 @@ jobs: diff -q generated_file.md committed_file.md - name: Create Pull Request - if: steps.check_changes.outputs.changes_detected == true run: | echo "Changes detected in testing documentation." echo "A pull request should be created to update the documentation." From b830ad77ddc8625183413b4d586a7ece8145bfd3 Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Thu, 17 Oct 2024 08:12:21 +0200 Subject: [PATCH 18/20] Testing testing-docs-check.yml --- .github/workflows/testing-docs-check.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index 99f8ccef1d..34282a9a65 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -42,9 +42,17 @@ jobs: diff -q generated_file.md committed_file.md - name: Create Pull Request - run: | - echo "Changes detected in testing documentation." - echo "A pull request should be created to update the documentation." + uses: peter-evans/create-pull-request@v5 + with: + token: ${{ secrets.PRBOT_PAT }} + commit-message: "docs: update testing documentation" + title: "docs: update testing documentation" + branch: "bot/update-testing-docs" + base: tk/check-testing-docs-nightly + delete-branch: true + body: | + This PR updates the testing documentation. + Please review the changes and merge if everything looks correct. From e9afefbf1f1331fca952b642c956782dab38c7fe Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Thu, 17 Oct 2024 13:27:23 +0200 Subject: [PATCH 19/20] Testing testing-docs-check.yml --- .github/workflows/testing-docs-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index 34282a9a65..300370e8c3 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -42,13 +42,13 @@ jobs: diff -q generated_file.md committed_file.md - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.PRBOT_PAT }} commit-message: "docs: update testing documentation" title: "docs: update testing documentation" branch: "bot/update-testing-docs" - base: tk/check-testing-docs-nightly + base: "tk/check-testing-docs-nightly" delete-branch: true body: | This PR updates the testing documentation. From 45419829566ee39943773a94ede98b48a28df4bf Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Thu, 17 Oct 2024 15:41:41 +0200 Subject: [PATCH 20/20] Testing testing-docs-check.yml --- .github/workflows/testing-docs-check.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/testing-docs-check.yml b/.github/workflows/testing-docs-check.yml index 300370e8c3..3ade71ee21 100644 --- a/.github/workflows/testing-docs-check.yml +++ b/.github/workflows/testing-docs-check.yml @@ -48,8 +48,6 @@ jobs: commit-message: "docs: update testing documentation" title: "docs: update testing documentation" branch: "bot/update-testing-docs" - base: "tk/check-testing-docs-nightly" - delete-branch: true body: | This PR updates the testing documentation. Please review the changes and merge if everything looks correct.