From 77ae66945e9b5005fe845f30bd1d757b383ceb01 Mon Sep 17 00:00:00 2001 From: Pierluigi Cau Date: Tue, 21 Apr 2020 10:24:04 +0100 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1ba3238..3f3336a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,6 +10,9 @@ jobs: name: create new issue runs-on: ubuntu-latest steps: + - name: Set Date + run: echo "::set-env name=DATE::$(date -u '+%B %d %Y')" + # Repo code checkout required if `template` is used - name: Checkout @@ -19,6 +22,7 @@ jobs: id: issue-bot uses: imjohnbo/issue-bot@v2 with: + title: "1:1 for ${{ env.DATE }}" assignees: "pierluigi" # GitHub handles without the @ labels: "1on1" pinned: true @@ -27,6 +31,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Generate random questions + if: success() uses: ./ with: issue-number: ${{ steps.issue-bot.outputs.issue-number }}