From 9d0924fb4c192d3c0ffbd60fea8eca65732eee9c Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Fri, 10 Dec 2021 17:49:49 -0500 Subject: [PATCH] Drop labelling from PR welcome action The first-interaction GitHub Action doesn't appear to support adding labels and is broken with that config option. --- .github/workflows/pr_welcome.yml | 37 ++++++++++++++++---------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/.github/workflows/pr_welcome.yml b/.github/workflows/pr_welcome.yml index f4dd081e014f..1e2627c911af 100644 --- a/.github/workflows/pr_welcome.yml +++ b/.github/workflows/pr_welcome.yml @@ -7,30 +7,29 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/first-interaction@v1 - with: - add-labels: "status: needs workflow approval" - repo-token: ${{ secrets.GITHUB_TOKEN }} - pr-message: >+ - Thank you for opening your first PR into Matplotlib! + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + pr-message: >+ + Thank you for opening your first PR into Matplotlib! - If you have not heard from us in a while, please feel free to - ping `@matplotlib/developers` or anyone who has commented on the - PR. Most of our reviewers are volunteers and sometimes - things fall through the cracks. + If you have not heard from us in a while, please feel free to ping + `@matplotlib/developers` or anyone who has commented on the PR. + Most of our reviewers are volunteers and sometimes things fall + through the cracks. - You can also join us [on - gitter](https://gitter.im/matplotlib/matplotlib) for real-time - discussion. + You can also join us [on + gitter](https://gitter.im/matplotlib/matplotlib) for real-time + discussion. - For details on testing, writing docs, and our review process, - please see [the developer - guide](https://matplotlib.org/devdocs/devel/index.html) + For details on testing, writing docs, and our review process, + please see [the developer + guide](https://matplotlib.org/devdocs/devel/index.html) - We strive to be a welcoming and open project. Please follow our - [Code of - Conduct](https://github.com/matplotlib/matplotlib/blob/main/CODE_OF_CONDUCT.md). + We strive to be a welcoming and open project. Please follow our + [Code of + Conduct](https://github.com/matplotlib/matplotlib/blob/main/CODE_OF_CONDUCT.md).