Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 0/1] .github: add github action to automate PR handling
@ 2024-07-08  1:37 zhangdongdong
  2024-07-08  1:37 ` [Buildroot] [PATCH v2 1/1] " zhangdongdong
  0 siblings, 1 reply; 6+ messages in thread
From: zhangdongdong @ 2024-07-08  1:37 UTC (permalink / raw)
  To: buildroot; +Cc: bonet, Dongdong Zhang

From: Dongdong Zhang <zhangdongdong@eswincomputing.com>

Changes in v2:
    - Adopted Edgar Bonet's suggestion to retain the original 
      pull request template.Restored .github/pull_request_template.md
      to its original form. This way, developers will see the prompt 
      when creating a pull request, without having to wait for the 
      workflow to complete.

Dongdong Zhang (1):
  .github: add github action to automate PR handling

 .github/workflows/repo-lockdown.yml | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 .github/workflows/repo-lockdown.yml

-- 
2.17.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH v2 1/1] .github: add github action to automate PR handling
  2024-07-08  1:37 [Buildroot] [PATCH v2 0/1] .github: add github action to automate PR handling zhangdongdong
@ 2024-07-08  1:37 ` zhangdongdong
  2024-07-08  2:13   ` James Hilliard
  0 siblings, 1 reply; 6+ messages in thread
From: zhangdongdong @ 2024-07-08  1:37 UTC (permalink / raw)
  To: buildroot; +Cc: bonet, Dongdong Zhang

From: Dongdong Zhang <zhangdongdong@eswincomputing.com>

This patch updates the Buildroot repository's GitHub configuration to better
manage incoming pull requests.

- Added a new GitHub Actions workflow (`repo-lockdown.yml`) to automatically
  handle new pull requests.

The new workflow:
- Triggers on new pull requests.
- Uses the `dessant/repo-lockdown` action to:
  - Comment on the pull request, guiding contributors to use the mailing list
    for patch submission.
  - Lock the pull request to prevent further discussion.
  - Close the pull request.

This change ensures that contributors are properly directed to the preferred
method of patch submission via the mailing list, maintaining consistency and
streamlining the review process.

Signed-off-by: Dongdong Zhang <zhangdongdong@eswincomputing.com>
---
 .github/workflows/repo-lockdown.yml | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 .github/workflows/repo-lockdown.yml

diff --git a/.github/workflows/repo-lockdown.yml b/.github/workflows/repo-lockdown.yml
new file mode 100644
index 0000000000..a5f8bd6a93
--- /dev/null
+++ b/.github/workflows/repo-lockdown.yml
@@ -0,0 +1,23 @@
+name: 'Repo Lockdown'
+
+on:
+  pull_request_target:
+    types: opened
+
+permissions:
+  pull-requests: write
+
+jobs:
+  action:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: dessant/repo-lockdown@v4
+        with:
+          pr-comment: |
+            Please do not submit a Pull Request via GitHub. Buildroot makes use of a
+            [mailing list](http://lists.buildroot.org/mailman/listinfo/buildroot) for patch submission and review.
+            See [submitting your own patches](http://buildroot.org/manual.html#submitting-patches) for more info.
+
+            Thanks for your help!
+          lock-pr: true
+          close-pr: true
\ No newline at end of file
-- 
2.17.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 1/1] .github: add github action to automate PR handling
  2024-07-08  1:37 ` [Buildroot] [PATCH v2 1/1] " zhangdongdong
@ 2024-07-08  2:13   ` James Hilliard
  2024-07-08  2:25     ` DongdongZhang
  0 siblings, 1 reply; 6+ messages in thread
From: James Hilliard @ 2024-07-08  2:13 UTC (permalink / raw)
  To: zhangdongdong; +Cc: bonet, buildroot

On Sun, Jul 7, 2024 at 7:38 PM <zhangdongdong@eswincomputing.com> wrote:
>
> From: Dongdong Zhang <zhangdongdong@eswincomputing.com>
>
> This patch updates the Buildroot repository's GitHub configuration to better
> manage incoming pull requests.
>
> - Added a new GitHub Actions workflow (`repo-lockdown.yml`) to automatically
>   handle new pull requests.
>
> The new workflow:
> - Triggers on new pull requests.
> - Uses the `dessant/repo-lockdown` action to:
>   - Comment on the pull request, guiding contributors to use the mailing list
>     for patch submission.
>   - Lock the pull request to prevent further discussion.
>   - Close the pull request.
>
> This change ensures that contributors are properly directed to the preferred
> method of patch submission via the mailing list, maintaining consistency and
> streamlining the review process.
>
> Signed-off-by: Dongdong Zhang <zhangdongdong@eswincomputing.com>
> ---
>  .github/workflows/repo-lockdown.yml | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>  create mode 100644 .github/workflows/repo-lockdown.yml
>
> diff --git a/.github/workflows/repo-lockdown.yml b/.github/workflows/repo-lockdown.yml
> new file mode 100644
> index 0000000000..a5f8bd6a93
> --- /dev/null
> +++ b/.github/workflows/repo-lockdown.yml
> @@ -0,0 +1,23 @@
> +name: 'Repo Lockdown'
> +
> +on:
> +  pull_request_target:
> +    types: opened
> +
> +permissions:
> +  pull-requests: write
> +
> +jobs:
> +  action:
> +    runs-on: ubuntu-latest
> +    steps:
> +      - uses: dessant/repo-lockdown@v4

Can probably just use a github script along these lines or something:
https://github.com/sbabic/swupdate/blob/2024.05.2/.github/workflows/contributing.yml

probably also needs a conditional so it only runs on the one github repo:
if: github.repository == ‘buildroot/buildroot’

> +        with:
> +          pr-comment: |
> +            Please do not submit a Pull Request via GitHub. Buildroot makes use of a
> +            [mailing list](http://lists.buildroot.org/mailman/listinfo/buildroot) for patch submission and review.
> +            See [submitting your own patches](http://buildroot.org/manual.html#submitting-patches) for more info.
> +
> +            Thanks for your help!
> +          lock-pr: true
> +          close-pr: true
> \ No newline at end of file
> --
> 2.17.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 1/1] .github: add github action to automate PR handling
  2024-07-08  2:13   ` James Hilliard
@ 2024-07-08  2:25     ` DongdongZhang
  2024-07-08 20:29       ` Thomas Petazzoni via buildroot
  0 siblings, 1 reply; 6+ messages in thread
From: DongdongZhang @ 2024-07-08  2:25 UTC (permalink / raw)
  To: James Hilliard; +Cc: bonet, buildroot




> -----原始邮件-----发件人:"James Hilliard" <james.hilliard1@gmail.com>发送时间:2024-07-08 10:13:30 (星期一)收件人:zhangdongdong@eswincomputing.com抄送:buildroot@buildroot.org, bonet@grenoble.cnrs.fr主题:Re: [Buildroot] [PATCH v2 1/1] .github: add github action to automate PR handling
> 
> On Sun, Jul 7, 2024 at 7:38 PM <zhangdongdong@eswincomputing.com> wrote:
> >
> > From: Dongdong Zhang <zhangdongdong@eswincomputing.com>
> >
> > This patch updates the Buildroot repository's GitHub configuration to better
> > manage incoming pull requests.
> >
> > - Added a new GitHub Actions workflow (`repo-lockdown.yml`) to automatically
> >   handle new pull requests.
> >
> > The new workflow:
> > - Triggers on new pull requests.
> > - Uses the `dessant/repo-lockdown` action to:
> >   - Comment on the pull request, guiding contributors to use the mailing list
> >     for patch submission.
> >   - Lock the pull request to prevent further discussion.
> >   - Close the pull request.
> >
> > This change ensures that contributors are properly directed to the preferred
> > method of patch submission via the mailing list, maintaining consistency and
> > streamlining the review process.
> >
> > Signed-off-by: Dongdong Zhang <zhangdongdong@eswincomputing.com>
> > ---
> >  .github/workflows/repo-lockdown.yml | 23 +++++++++++++++++++++++
> >  1 file changed, 23 insertions(+)
> >  create mode 100644 .github/workflows/repo-lockdown.yml
> >
> > diff --git a/.github/workflows/repo-lockdown.yml b/.github/workflows/repo-lockdown.yml
> > new file mode 100644
> > index 0000000000..a5f8bd6a93
> > --- /dev/null
> > +++ b/.github/workflows/repo-lockdown.yml
> > @@ -0,0 +1,23 @@
> > +name: 'Repo Lockdown'
> > +
> > +on:
> > +  pull_request_target:
> > +    types: opened
> > +
> > +permissions:
> > +  pull-requests: write
> > +
> > +jobs:
> > +  action:
> > +    runs-on: ubuntu-latest
> > +    steps:
> > +      - uses: dessant/repo-lockdown@v4
> 
> Can probably just use a github script along these lines or something:
> https://github.com/sbabic/swupdate/blob/2024.05.2/.github/workflows/contributing.yml
> 
> probably also needs a conditional so it only runs on the one github repo:
> if: github.repository == ‘buildroot/buildroot’
> 

Hi, James,
In this scenario, I believe that using `dessant/repo-lockdown@v4` is more suitable 
than `actions/github-script@v5`. `dessant/repo-lockdown@v4` is specifically focused 
on repository lockdown functionality and has been widely used and validated. 
In contrast, while `actions/github-script@v5` is flexible, it requires more 
customization and maintenance work and a strong familiarity with JavaScript. 
To keep the process simple and stable, I have decided to continue 
using `dessant/repo-lockdown@v4`.

Thank you again for your suggestion.

> > +        with:
> > +          pr-comment: |
> > +            Please do not submit a Pull Request via GitHub. Buildroot makes use of a
> > +            [mailing list](http://lists.buildroot.org/mailman/listinfo/buildroot) for patch submission and review.
> > +            See [submitting your own patches](http://buildroot.org/manual.html#submitting-patches) for more info.
> > +
> > +            Thanks for your help!
> > +          lock-pr: true
> > +          close-pr: true
> > \ No newline at end of file
> > --
> > 2.17.1
> >
> > _______________________________________________
> > buildroot mailing list
> > buildroot@buildroot.org
> > https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 1/1] .github: add github action to automate PR handling
  2024-07-08  2:25     ` DongdongZhang
@ 2024-07-08 20:29       ` Thomas Petazzoni via buildroot
  2024-07-09  1:40         ` DongdongZhang
  0 siblings, 1 reply; 6+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-07-08 20:29 UTC (permalink / raw)
  To: DongdongZhang; +Cc: James Hilliard, bonet, buildroot

Hello,

On Mon, 8 Jul 2024 10:25:05 +0800 (GMT+08:00)
DongdongZhang <zhangdongdong@eswincomputing.com> wrote:

> > Can probably just use a github script along these lines or something:
> > https://github.com/sbabic/swupdate/blob/2024.05.2/.github/workflows/contributing.yml
> > 
> > probably also needs a conditional so it only runs on the one github repo:
> > if: github.repository == ‘buildroot/buildroot’
> >   
> 
> Hi, James,
> In this scenario, I believe that using `dessant/repo-lockdown@v4` is more suitable 
> than `actions/github-script@v5`. `dessant/repo-lockdown@v4` is specifically focused 
> on repository lockdown functionality and has been widely used and validated. 
> In contrast, while `actions/github-script@v5` is flexible, it requires more 
> customization and maintenance work and a strong familiarity with JavaScript. 
> To keep the process simple and stable, I have decided to continue 
> using `dessant/repo-lockdown@v4`.

I do agree with you on this. However, you didn't reply to the second
comment from James, on checking that the action only runs on the main
buildroot repo, and not others. Indeed, we don't want people/companies
forking our repo to have this PR lockdown action triggered.

Could you check this, and send an updated version of your patch?

Thanks a lot!

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 1/1] .github: add github action to automate PR handling
  2024-07-08 20:29       ` Thomas Petazzoni via buildroot
@ 2024-07-09  1:40         ` DongdongZhang
  0 siblings, 0 replies; 6+ messages in thread
From: DongdongZhang @ 2024-07-09  1:40 UTC (permalink / raw)
  To: Thomas Petazzoni; +Cc: James Hilliard, bonet, buildroot




> -----原始邮件-----发件人:"Thomas Petazzoni" <thomas.petazzoni@bootlin.com>发送时间:2024-07-09 04:29:33 (星期二)收件人:DongdongZhang <zhangdongdong@eswincomputing.com>抄送:"James Hilliard" <james.hilliard1@gmail.com>, bonet@grenoble.cnrs.fr, buildroot@buildroot.org主题:Re: [Buildroot] [PATCH v2 1/1] .github: add github action to automate PR handling
> 
> Hello,
> 
> On Mon, 8 Jul 2024 10:25:05 +0800 (GMT+08:00)
> DongdongZhang <zhangdongdong@eswincomputing.com> wrote:
> 
> > > Can probably just use a github script along these lines or something:
> > > https://github.com/sbabic/swupdate/blob/2024.05.2/.github/workflows/contributing.yml
> > > 
> > > probably also needs a conditional so it only runs on the one github repo:
> > > if: github.repository == ‘buildroot/buildroot’
> > >   
> > 
> > Hi, James,
> > In this scenario, I believe that using `dessant/repo-lockdown@v4` is more suitable 
> > than `actions/github-script@v5`. `dessant/repo-lockdown@v4` is specifically focused 
> > on repository lockdown functionality and has been widely used and validated. 
> > In contrast, while `actions/github-script@v5` is flexible, it requires more 
> > customization and maintenance work and a strong familiarity with JavaScript. 
> > To keep the process simple and stable, I have decided to continue 
> > using `dessant/repo-lockdown@v4`.
> 
> I do agree with you on this. However, you didn't reply to the second
> comment from James, on checking that the action only runs on the main
> buildroot repo, and not others. Indeed, we don't want people/companies
> forking our repo to have this PR lockdown action triggered.
> 
> Could you check this, and send an updated version of your patch?
> 
> Thanks a lot!
> 
> Thomas
> -- 
> Thomas Petazzoni, co-owner and CEO, Bootlin
> Embedded Linux and Kernel engineering and training
> https://bootlin.com

Hello, Thomas.

I previously misunderstood James's response. Thanks to both James and your suggestions. 
I will update a patch version shortly to restrict the trigger condition to the 
repo `buildroot/buildroot`.

Thank you.

Dongdong
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2024-07-09  1:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-08  1:37 [Buildroot] [PATCH v2 0/1] .github: add github action to automate PR handling zhangdongdong
2024-07-08  1:37 ` [Buildroot] [PATCH v2 1/1] " zhangdongdong
2024-07-08  2:13   ` James Hilliard
2024-07-08  2:25     ` DongdongZhang
2024-07-08 20:29       ` Thomas Petazzoni via buildroot
2024-07-09  1:40         ` DongdongZhang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox