Re: [PATCH[ special purpose weekly CI (spellcheck)

2020-03-14 Thread Willy Tarreau
On Sat, Mar 14, 2020 at 08:40:31AM +0500,  ??? wrote:
> > Ilya, just a question, what will be the impact of this ? Will we
> > all be spammed or anything or are you the one volunteering to stand
> > in front of the cannon ? :-)
> >
> 
> 
> yes, I will take care of it.

Thanks, now applied, as well as your tree-wide typos cleanup.

Willy



Re: [PATCH[ special purpose weekly CI (spellcheck)

2020-03-13 Thread Илья Шипицин
сб, 14 мар. 2020 г. в 01:06, Willy Tarreau :

> On Fri, Mar 13, 2020 at 03:24:15PM +0100, William Lallemand wrote:
> > If you grep on BUILD: in the git log, this keyword does not mean
> > anything anymore. And this is confusing in my opinion. We could
> > introduce "CI: " instead.
>
> Good idea. I can adjust it.
>
> Ilya, just a question, what will be the impact of this ? Will we
> all be spammed or anything or are you the one volunteering to stand
> in front of the cannon ? :-)
>


yes, I will take care of it.



>
> Willy
>


Re: [PATCH[ special purpose weekly CI (spellcheck)

2020-03-13 Thread Willy Tarreau
On Fri, Mar 13, 2020 at 03:24:15PM +0100, William Lallemand wrote:
> If you grep on BUILD: in the git log, this keyword does not mean
> anything anymore. And this is confusing in my opinion. We could
> introduce "CI: " instead.

Good idea. I can adjust it.

Ilya, just a question, what will be the impact of this ? Will we
all be spammed or anything or are you the one volunteering to stand
in front of the cannon ? :-)

Willy



Re: [PATCH[ special purpose weekly CI (spellcheck)

2020-03-13 Thread William Lallemand
On Fri, Mar 13, 2020 at 07:05:15PM +0500, Илья Шипицин wrote:
> Willy, can we apply this?
> 
> I scheduled it on tuesday every week.
> 
> вт, 10 мар. 2020 г. в 12:12, Илья Шипицин :
> 
> > Hello,
> >
> > I implemented spell check CI.
> > it is a bit noisy, however, I hope we will polish it soon.
> >
> > Cheers,
> > Ilya Shipitcin
> >

Can we introduce a new prefix in the commit subject? Because I keep seeing
"BUILD:" for things that are specific to the CI, sometimes its BUILD: :
sometimes it's only "BUILD:". 

If you grep on BUILD: in the git log, this keyword does not mean
anything anymore. And this is confusing in my opinion. We could
introduce "CI: " instead.

-- 
William Lallemand



Re: [PATCH[ special purpose weekly CI (spellcheck)

2020-03-13 Thread Илья Шипицин
Willy, can we apply this?

I scheduled it on tuesday every week.

вт, 10 мар. 2020 г. в 12:12, Илья Шипицин :

> Hello,
>
> I implemented spell check CI.
> it is a bit noisy, however, I hope we will polish it soon.
>
> Cheers,
> Ilya Shipitcin
>


[PATCH[ special purpose weekly CI (spellcheck)

2020-03-10 Thread Илья Шипицин
Hello,

I implemented spell check CI.
it is a bit noisy, however, I hope we will polish it soon.

Cheers,
Ilya Shipitcin
From b58cc1f207649deea6d1053d62d311501e775c5e Mon Sep 17 00:00:00 2001
From: Ilya Shipitsin 
Date: Tue, 10 Mar 2020 12:10:26 +0500
Subject: [PATCH] BUILD: add spellcheck github action

action is self consistent. it is scheduled to run weekly
---
 .github/workflows/codespell.yml | 17 +
 1 file changed, 17 insertions(+)
 create mode 100644 .github/workflows/codespell.yml

diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
new file mode 100644
index 0..32d5898f7
--- /dev/null
+++ b/.github/workflows/codespell.yml
@@ -0,0 +1,17 @@
+name: codespell
+
+on: 
+  schedule:
+- cron: "0 0 * * 2" 
+
+jobs:
+  codespell:
+
+runs-on: ubuntu-latest
+
+steps:
+- uses: actions/checkout@v2
+- name: install prerequisites
+  run: sudo pip install codespell
+- name: check
+  run: codespell -c -q 2 --ignore-words-list ist,hist,wan,ca,cas --skip CHANGELOG
-- 
2.24.1