From d2204d4f0f775f5c73a409d522bd6eb296b43d53 Mon Sep 17 00:00:00 2001 From: Sahdev Zala Date: Wed, 21 Aug 2024 22:42:25 +0000 Subject: [PATCH] Remove skip ci recommendation (#134134) Using `skip ci` is no longer a recommendation practices. Pull Request resolved: https://github.com/pytorch/pytorch/pull/134134 Approved by: https://github.com/soulitzer --- CONTRIBUTING.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 107487e8f29f..12f8222ff1bd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -117,11 +117,6 @@ conda activate pytorch-deps Next run `python setup.py clean`. After that, you can install in `develop` mode again. -* If a commit is simple and doesn't affect any code (keep in mind that some docstrings contain code - that is used in tests), you can add `[skip ci]` (case sensitive) somewhere in your commit message to - [skip all build / test steps](https://github.blog/changelog/2021-02-08-github-actions-skip-pull-request-and-push-workflows-with-skip-ci/). - Note that changing the pull request body or title on GitHub itself has no effect. - * If you run into errors when running `python setup.py develop`, here are some debugging steps: 1. Run `printf '#include \nint main() { printf("Hello World");}'|clang -x c -; ./a.out` to make sure your CMake works and can compile this simple Hello World program without errors.