From d1c87070e24bc58320bf2cf37066d5e7f8c1c724 Mon Sep 17 00:00:00 2001 From: Julien Bisconti Date: Mon, 2 Nov 2020 22:26:46 +0100 Subject: [PATCH] Update PR template --- .github/PULL_REQUEST_TEMPLATE.md | 13 +++++++++++-- .github/workflows/pull_request.yml | 30 ------------------------------ 2 files changed, 11 insertions(+), 32 deletions(-) delete mode 100644 .github/workflows/pull_request.yml diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 22a361c..a16b01a 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,15 @@ - + # Quality Standards @@ -32,7 +41,7 @@ But usually, we are pretty relaxed people, so just come and say hi, we'll figure - The link should be the name of the package or project or website - Description should be clear and concise (read it out loud to be sure) - Description should follow the link, on the same line -- Entries are listed alphabetically, please respect the order +- **Entries are listed alphabetically**, please respect the order - If you want to add more than one link, please don't do all PR on the exact same line, it usually results in conflicts and your PR cannot be automatically merged... Please contribute links to packages/projects you have used or are familiar with. This will help ensure high-quality entries. diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml deleted file mode 100644 index 7188255..0000000 --- a/.github/workflows/pull_request.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Pull Requests - -on: - pull_request: - branches: - - master - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@01aecccf739ca6ff86c0539fbc67a7a5007bbc81 - - uses: actions/setup-node@83c9f7a7df54d6b57455f7c57ac414f2ae5fb8de - with: - node-version: 14 - - - uses: actions/cache@70655ec8323daeeaa7ef06d7c56e1b9191396cbe - id: cache - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: Install Dependencies - # if: steps.cache.outputs.cache-hit != 'true' - run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline - - run: npm run test - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}