From 53d6e46bfe9ea418ab4fa11a9dc55d2593911f9e Mon Sep 17 00:00:00 2001 From: toyamarinyon Date: Tue, 7 Nov 2023 09:18:23 +0900 Subject: [PATCH 1/3] =?UTF-8?q?=E9=9B=91=E8=AB=87=E4=BC=9A=E3=83=AD?= =?UTF-8?q?=E3=82=B0=E3=81=AEissue=E3=81=AE=E4=BD=9C=E6=88=90=E6=99=82?= =?UTF-8?q?=E5=88=BB=E3=82=92=E6=9C=88=E6=9B=9C=E6=97=A5=E3=81=AE10?= =?UTF-8?q?=E6=99=82=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/create_meeting_record.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create_meeting_record.yaml b/.github/workflows/create_meeting_record.yaml index 5581a61..71d4f7b 100644 --- a/.github/workflows/create_meeting_record.yaml +++ b/.github/workflows/create_meeting_record.yaml @@ -1,9 +1,9 @@ name: Create Meeting Record issue on: schedule: - # 毎週金曜 13:00 JST - - cron: '0 4 * * fri' - # workflow_dispatch: + # 毎週月曜日 10:00 JST + - cron: '0 1 * * mon' + workflow_dispatch: jobs: create_issue: runs-on: ubuntu-latest From f9ff854b2c374453d7af7a1884a39ccefd91d35b Mon Sep 17 00:00:00 2001 From: toyamarinyon Date: Tue, 7 Nov 2023 10:55:01 +0900 Subject: [PATCH 2/3] =?UTF-8?q?=E6=9C=88=E6=9B=9C=E6=97=A5=E3=81=AB?= =?UTF-8?q?=E5=AE=9F=E8=A1=8C=E3=81=97=E3=81=A6=E9=87=91=E6=9B=9C=E6=97=A5?= =?UTF-8?q?=E3=81=AE=E6=97=A5=E4=BB=98=E3=81=8C=E3=82=BF=E3=82=A4=E3=83=88?= =?UTF-8?q?=E3=83=AB=E3=81=AB=E8=A8=AD=E5=AE=9A=E3=81=95=E3=82=8C=E3=82=8B?= =?UTF-8?q?=E3=82=88=E3=81=86=E3=81=AB=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/create_meeting_record.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create_meeting_record.yaml b/.github/workflows/create_meeting_record.yaml index 71d4f7b..abe4b61 100644 --- a/.github/workflows/create_meeting_record.yaml +++ b/.github/workflows/create_meeting_record.yaml @@ -14,6 +14,6 @@ jobs: run: | latest=$(gh issue list --jq '.[].title' --json title --search "雑談会 sort:created-desc" --limit 10 | grep 回 | grep -oE '[0-9]+' | head -1) latest=$(($latest+1)) - gh issue create --title "第${latest}回 雑談会ログ - `date '+%Y/%m/%d'`" --body "今週の雑談会のログです:memo:" + gh issue create --title "第${latest}回 雑談会ログ - `date --date '+4 day' '+%Y/%m/%d'`" --body "今週の雑談会のログです:memo:" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From bbafd0758daf46a4144017497037a43d2aaf5735 Mon Sep 17 00:00:00 2001 From: toyamarinyon Date: Tue, 7 Nov 2023 10:56:49 +0900 Subject: [PATCH 3/3] tweak --- .github/workflows/create_meeting_record.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create_meeting_record.yaml b/.github/workflows/create_meeting_record.yaml index abe4b61..031e969 100644 --- a/.github/workflows/create_meeting_record.yaml +++ b/.github/workflows/create_meeting_record.yaml @@ -14,6 +14,6 @@ jobs: run: | latest=$(gh issue list --jq '.[].title' --json title --search "雑談会 sort:created-desc" --limit 10 | grep 回 | grep -oE '[0-9]+' | head -1) latest=$(($latest+1)) - gh issue create --title "第${latest}回 雑談会ログ - `date --date '+4 day' '+%Y/%m/%d'`" --body "今週の雑談会のログです:memo:" + gh issue create --title "第${latest}回 雑談会ログ - `date --date '+4 days' '+%Y/%m/%d'`" --body "今週の雑談会のログです:memo:" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}