From 04ef50f2d4eeba5a00877436cba64c6eb92d766b Mon Sep 17 00:00:00 2001 From: Owais Kazi Date: Tue, 12 Apr 2022 19:50:40 +0000 Subject: [PATCH] Renamed workflow file Signed-off-by: Owais Kazi --- .github/workflows/{new-line.yml => code-hygiene.yml} | 0 DEVELOPER_GUIDE.md | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{new-line.yml => code-hygiene.yml} (100%) diff --git a/.github/workflows/new-line.yml b/.github/workflows/code-hygiene.yml similarity index 100% rename from .github/workflows/new-line.yml rename to .github/workflows/code-hygiene.yml diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md index 1dc1e7c2fb1d8..11fcb324c8cae 100644 --- a/DEVELOPER_GUIDE.md +++ b/DEVELOPER_GUIDE.md @@ -475,7 +475,7 @@ See [CONTRIBUTING](CONTRIBUTING.md). The Github workflow in [`backport.yml`](.github/workflows/backport.yml) creates backport PRs automatically when the original PR with an appropriate label `backport ` is merged to main with the backport workflow run successfully on the PR. For example, if a PR on main needs to be backported to `1.x` branch, add a label `backport 1.x` to the PR and make sure the backport workflow runs on the PR along with other checks. Once this PR is merged to main, the workflow will create a backport PR to the `1.x` branch. ## LineLint -A linter in [`new-line.yml`](.github/workflows/new-line.yml) that validates simple newline and whitespace rules in all sorts of files. It can: +A linter in [`code-hygiene.yml`](.github/workflows/code-hygiene.yml) that validates simple newline and whitespace rules in all sorts of files. It can: - Recursively check a directory tree for files that do not end in a newline - Automatically fix these files by adding a newline or trimming extra newlines.