scripts: Symlink pre-submit to run-ci

OpenBMC's CI scripts will run any script named run-ci in the
repository[1]. Exploit this to run the pre-submit tests in CI so issues
such as failing to add test guards are caught.

[1]: https://gerrit.openbmc.org/plugins/gitiles/openbmc/openbmc-build-scripts/+/decca83981004f97e0ee8c1ffc0c3589bf9d0a09/scripts/unit-test.py#1429

Change-Id: I5af7df0adeb38d69e4f0bf142f4a091a6ac60de7
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/docs/checklists/changes.md b/docs/checklists/changes.md
index 69d2372..a6e5b29 100644
--- a/docs/checklists/changes.md
+++ b/docs/checklists/changes.md
@@ -243,23 +243,3 @@
 
 - [ ] I've updated the ABI dump to capture the rename, or will mark the change
       as WIP until it has been.
-
-## Testing my changes
-
-Each of the following must succeed when executed in order. Note that to avoid
-[googletest bug #4232][googletest-issue-4232] you must avoid using GCC 12
-(shipped in Debian Bookworm).
-
-[googletest-issue-4232]: https://github.com/google/googletest/issues/4232
-
-- [ ] `meson setup -Dabi-compliance-check=disabled build`
-- [ ] `meson compile -C build && meson test -C build`
-
-- [ ] `meson configure --buildtype=release build`
-- [ ] `meson compile -C build && meson test -C build`
-
-- [ ] `meson configure --buildtype=debug build`
-- [ ] `meson configure -Dabi=deprecated,stable build`
-- [ ] `meson compile -C build && meson test -C build`
-
-This process is captured in `scripts/pre-submit` for automation.
diff --git a/scripts/run-ci b/scripts/run-ci
new file mode 120000
index 0000000..5a00027
--- /dev/null
+++ b/scripts/run-ci
@@ -0,0 +1 @@
+pre-submit
\ No newline at end of file