wireless-regdb.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] wireless-regdb: Workflow updates
@ 2024-08-13 19:39 Jiaxun Yang
  2024-08-13 19:39 ` [PATCH v2 1/2] wireless-regdb: Update .gitignore Jiaxun Yang
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jiaxun Yang @ 2024-08-13 19:39 UTC (permalink / raw)
  To: Chen-Yu Tsai; +Cc: linux-wireless, wireless-regdb, Jeff Johnson, Jiaxun Yang

Hi all,

This series updated some workflow components to streamline
wireless-regdb contributor experiences.

Please review.

Thanks

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
---
Changes in v2:
- v2: Swap Cc and to, Cc wireless-regdb@lists.infradead.org (Jeff)
- Link to v1: https://lore.kernel.org/r/20240813-workflow-v1-0-3f63f0ea9d5f@flygoat.com

---
Jiaxun Yang (2):
      wireless-regdb: Update .gitignore
      wireless-regdb: Add .b4-config

 .b4-config |  5 +++++
 .gitignore | 11 +++++++++--
 2 files changed, 14 insertions(+), 2 deletions(-)
---
base-commit: 003c282a297f8cec06a576fe1434c94353d14610
change-id: 20240813-workflow-91ded0f08d41

Best regards,
-- 
Jiaxun Yang <jiaxun.yang@flygoat.com>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v2 1/2] wireless-regdb: Update .gitignore
  2024-08-13 19:39 [PATCH v2 0/2] wireless-regdb: Workflow updates Jiaxun Yang
@ 2024-08-13 19:39 ` Jiaxun Yang
  2024-08-13 19:39 ` [PATCH v2 2/2] wireless-regdb: Add .b4-config Jiaxun Yang
  2024-08-14  4:16 ` [PATCH v2 0/2] wireless-regdb: Workflow updates Chen-Yu Tsai
  2 siblings, 0 replies; 4+ messages in thread
From: Jiaxun Yang @ 2024-08-13 19:39 UTC (permalink / raw)
  To: Chen-Yu Tsai; +Cc: linux-wireless, wireless-regdb, Jeff Johnson, Jiaxun Yang

Update .gitignore to ignore Python cache files and other
intermediate files.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
---
 .gitignore | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index a59d40833aa0..496247bfdbd1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,9 @@
-key.priv.pem
-dbparse.pyc
+__pycache__/
+*.py[cod]
+*$py.class
+
+.custom
+!wens.key.pub.pem
+!wens.x509.pem
+*.pem
+*.patch

-- 
2.46.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH v2 2/2] wireless-regdb: Add .b4-config
  2024-08-13 19:39 [PATCH v2 0/2] wireless-regdb: Workflow updates Jiaxun Yang
  2024-08-13 19:39 ` [PATCH v2 1/2] wireless-regdb: Update .gitignore Jiaxun Yang
@ 2024-08-13 19:39 ` Jiaxun Yang
  2024-08-14  4:16 ` [PATCH v2 0/2] wireless-regdb: Workflow updates Chen-Yu Tsai
  2 siblings, 0 replies; 4+ messages in thread
From: Jiaxun Yang @ 2024-08-13 19:39 UTC (permalink / raw)
  To: Chen-Yu Tsai; +Cc: linux-wireless, wireless-regdb, Jeff Johnson, Jiaxun Yang

Add .b4-config to provide default email To / Cc address.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
---
v2: Swap cc and to,  add wireless-regdb list (Jeff)
---
 .b4-config | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.b4-config b/.b4-config
new file mode 100644
index 000000000000..fb408d3f62d3
--- /dev/null
+++ b/.b4-config
@@ -0,0 +1,5 @@
+# Configuration for the `b4` tool
+# See https://b4.docs.kernel.org/en/latest/config.html
+[b4]
+    send-series-to = Chen-Yu Tsai <wens@kernel.org>
+    send-series-cc = linux-wireless@vger.kernel.org, wireless-regdb@lists.infradead.org

-- 
2.46.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v2 0/2] wireless-regdb: Workflow updates
  2024-08-13 19:39 [PATCH v2 0/2] wireless-regdb: Workflow updates Jiaxun Yang
  2024-08-13 19:39 ` [PATCH v2 1/2] wireless-regdb: Update .gitignore Jiaxun Yang
  2024-08-13 19:39 ` [PATCH v2 2/2] wireless-regdb: Add .b4-config Jiaxun Yang
@ 2024-08-14  4:16 ` Chen-Yu Tsai
  2 siblings, 0 replies; 4+ messages in thread
From: Chen-Yu Tsai @ 2024-08-14  4:16 UTC (permalink / raw)
  To: Jiaxun Yang; +Cc: linux-wireless, wireless-regdb, Jeff Johnson

On Tue, 13 Aug 2024 20:39:38 +0100, Jiaxun Yang wrote:
> This series updated some workflow components to streamline
> wireless-regdb contributor experiences.
> 
> Please review.
> 
> Thanks
> 
> [...]

Applied to master in wens/wireless-regdb.git, thanks!

[1/2] wireless-regdb: Update .gitignore
      https://git.kernel.org/wens/wireless-regdb/c/3afe17272b35
[2/2] wireless-regdb: Add .b4-config
      https://git.kernel.org/wens/wireless-regdb/c/bf55ed481432

Best regards,
-- 
Chen-Yu Tsai <wens@kernel.org>



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-08-14  4:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-13 19:39 [PATCH v2 0/2] wireless-regdb: Workflow updates Jiaxun Yang
2024-08-13 19:39 ` [PATCH v2 1/2] wireless-regdb: Update .gitignore Jiaxun Yang
2024-08-13 19:39 ` [PATCH v2 2/2] wireless-regdb: Add .b4-config Jiaxun Yang
2024-08-14  4:16 ` [PATCH v2 0/2] wireless-regdb: Workflow updates Chen-Yu Tsai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).