From 4e55357cfc89066daf71a86e7613c108cabaa6e2 Mon Sep 17 00:00:00 2001 From: immanuwell Date: Fri, 12 Jun 2026 16:13:16 +0400 Subject: [PATCH] docs: fix stale contribution and e2e debug instructions Signed-off-by: immanuwell --- DEVELOPMENT.md | 2 +- hack/README.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index c8ab8eacd9d..f3adf56e34b 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -231,7 +231,7 @@ To run a single rekt test using the `e2e-debug.sh` script, follow these instruct ./hack/e2e-debug.sh TestPingSourceWithSinkRef ./test/rekt ``` - This will run the specified rekt test (`TestMyRektScenario` in this case) from the provided directory (`test/rekt/scenarios`). + This will run the specified rekt test (`TestPingSourceWithSinkRef` in this case) from the provided directory (`./test/rekt`). **Note:** Ensure that you have the necessary dependencies and configurations set up before running the test. diff --git a/hack/README.md b/hack/README.md index 3ea65840594..4d673191d66 100644 --- a/hack/README.md +++ b/hack/README.md @@ -24,7 +24,7 @@ creating releases. 1. Click the Branch dropdown. 1. Type the desired `release-X.Y` branch name into the search box. -1. Click the `Create branch: release-X.Y from 'master'` button. _You must have +1. Click the `Create branch: release-X.Y from 'main'` button. _You must have write permissions to the repo to create a branch._ Prow will detect the new release branch and run the `release.sh` script. If @@ -43,10 +43,10 @@ creating releases. git fetch upstream ``` -1. Create a `release-X.Y` branch from `upstream/master`. +1. Create a `release-X.Y` branch from `upstream/main`. ```sh - git branch --no-track release-X.Y upstream/master + git branch --no-track release-X.Y upstream/main ``` 1. Push the branch to upstream. @@ -80,10 +80,10 @@ The major version release job is currently called 1. Create a branch based on the desired `release-X.Y` branch. ```sh - git co -b my-backport-branch upstream/release-X.Y + git checkout -b my-backport-branch upstream/release-X.Y ``` -1. Cherry-pick desired commits from master into the new branch. +1. Cherry-pick desired commits from main into the new branch. ```sh git cherry-pick