From 444d182559422ecf408d922c9ed50107cf048dec Mon Sep 17 00:00:00 2001 From: TheBusyBiscuit Date: Sat, 21 Mar 2020 15:39:45 +0100 Subject: [PATCH] [CI skip] ANother test, closes #1748 --- .github/workflows/closed_issues.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/closed_issues.yml b/.github/workflows/closed_issues.yml index 3457b5242..be3819dbd 100644 --- a/.github/workflows/closed_issues.yml +++ b/.github/workflows/closed_issues.yml @@ -15,14 +15,14 @@ jobs: token: ${{ secrets.ACCESS_TOKEN }} max_commits: 20 - name: Add label - if: contains(steps.commits.outputs.issues, github.event.issue.number) + if: contains(${{ steps.commits.outputs.issues }}, ${{ github.event.issue.number }}) uses: maxkomarychev/octions/octions/issues/add-labels@master with: token: ${{ secrets.ACCESS_TOKEN }} issue_number: ${{ github.event.issue.number }} labels: 'Resolved' - uses: maxkomarychev/octions/octions/issues/create-comment@master - if: contains(toJson(steps.commits.outputs.issues), github.event.issue.number) == false + if: contains(${{ steps.commits.outputs.issues }}, ${{ github.event.issue.number }}) == false with: token: ${{ secrets.ACCESS_TOKEN }} issue_number: ${{ github.event.issue.number }}