From 188dbc66bafca3752f629d918a0c9c2f280d0f54 Mon Sep 17 00:00:00 2001 From: Michael Frikke Depner Date: Tue, 29 Aug 2023 13:02:29 +0200 Subject: [PATCH] Fix github script indentation --- .github/workflows/pr-validation.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index 990f09a9..52bc2010 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -16,10 +16,10 @@ jobs: with: script: | github.rest.issues.createComment({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: "Please don't submit a PR containing Kata solutions. If you are adding an improvement to the Katas repo, please resubmit this PR and check the `[X]` box in the PR template." + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + body: "Please don't submit a PR containing Kata solutions. If you are adding an improvement to the Katas repo, please resubmit this PR and check the `[X]` box in the PR template." }) - name: Close PR if checkmark is missing if: ${{ !contains(github.event.pull_request.body, '[X] I acknowledge') }} @@ -27,8 +27,8 @@ jobs: with: script: | github.rest.pulls.update({ - pull_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - state: 'closed' + pull_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + state: 'closed' })