From 9b2db0c2e21839207f6a20bbd736c7406950f8f5 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Tue, 28 Jul 2020 18:12:50 +0100 Subject: [PATCH] Revert "Need at least one JSON key ?" This reverts commit f509d974c1eb926bc1640ba3c2703518ac972136. --- .github/workflows/pr-annotate-with-flake8.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-annotate-with-flake8.yml b/.github/workflows/pr-annotate-with-flake8.yml index 354c763f..c3eb3beb 100644 --- a/.github/workflows/pr-annotate-with-flake8.yml +++ b/.github/workflows/pr-annotate-with-flake8.yml @@ -17,7 +17,7 @@ jobs: matrix: ${{ steps.set-allowed.outputs.allowed }} steps: - id: set-allowed - run: echo '::set-output name=allowed::{"allowed":["Athanasius"]}' + run: echo '::set-output name=allowed::{["Athanasius"]}' flake8_annotate: runs-on: ubuntu-18.04 @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout - if: ${{ contains(fromJson(needs.set_allowed.outputs.allowed.allowed.*), github.actor) }} + if: ${{ contains(fromJson(needs.set_allowed.outputs.allowed.*), github.actor) }} uses: actions/checkout@v2 with: fetch-depth: 0