From 2da4d82d1084c86e0aab1a24cef9d63920fdcb1a Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Mon, 10 May 2021 12:30:34 -0400 Subject: [PATCH] workflows/triage: indent using 2 spaces --- .github/workflows/triage.yml | 58 ++++++++++++++++++------------------ 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml index 28fbad643e5..8a558fa37f3 100644 --- a/.github/workflows/triage.yml +++ b/.github/workflows/triage.yml @@ -3,32 +3,32 @@ name: Triage tasks on: pull_request_target jobs: - triage: - runs-on: ubuntu-latest - steps: - - name: Check commit format - uses: Homebrew/actions/check-commit-format@master - with: - token: ${{secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN}} - - name: Cancel previous runs - uses: Homebrew/actions/cancel-previous-runs@master - if: always() - with: - token: ${{secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN}} - - name: Label pull request - uses: Homebrew/actions/label-pull-requests@master - if: always() - with: - token: ${{secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN}} - def: | - [ - { - "label": "new cask", - "status": "added", - "path": "Casks/.+" - }, { - "label": "marked for removal/rejection", - "status": "removed", - "path": "Casks/.+" - } - ] + triage: + runs-on: ubuntu-latest + steps: + - name: Check commit format + uses: Homebrew/actions/check-commit-format@master + with: + token: ${{secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN}} + - name: Cancel previous runs + uses: Homebrew/actions/cancel-previous-runs@master + if: always() + with: + token: ${{secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN}} + - name: Label pull request + uses: Homebrew/actions/label-pull-requests@master + if: always() + with: + token: ${{secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN}} + def: | + [ + { + "label": "new cask", + "status": "added", + "path": "Casks/.+" + }, { + "label": "marked for removal/rejection", + "status": "removed", + "path": "Casks/.+" + } + ]