From 20d6724b2ce2fbb34442e0a950796050e21e054d Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Mon, 12 Jul 2021 10:12:47 +0900 Subject: [PATCH] docs: Improve concurrency usage --- README.md | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index ea6ed6c..beb1992 100644 --- a/README.md +++ b/README.md @@ -78,12 +78,11 @@ on: - main # Set a branch to deploy pull_request: -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - jobs: deploy: runs-on: ubuntu-20.04 + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v2 with: @@ -244,12 +243,11 @@ on: - main # Set a branch to deploy pull_request: -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - jobs: deploy: runs-on: ubuntu-20.04 + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v2 with: @@ -302,12 +300,11 @@ on: - main # Set a branch to deploy pull_request: -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - jobs: deploy: runs-on: ubuntu-20.04 + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v2 with: @@ -355,12 +352,11 @@ on: branches: - main -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - jobs: deploy: runs-on: ubuntu-20.04 + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v2 with: