From 28be4bcd8338ca7a2996cab223864d63551e7d7c Mon Sep 17 00:00:00 2001 From: Aman Kumar Sarraf <90839355+AmanSarraf@users.noreply.github.com> Date: Sat, 31 Dec 2022 13:09:06 +0530 Subject: [PATCH 1/7] Create Agenda.yml --- .github/workflows/Agenda.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/Agenda.yml diff --git a/.github/workflows/Agenda.yml b/.github/workflows/Agenda.yml new file mode 100644 index 0000000..4e1caf6 --- /dev/null +++ b/.github/workflows/Agenda.yml @@ -0,0 +1,36 @@ +name: Weekly Team Sync +on: + schedule: + - cron: 10 * * * * + +jobs: + create_issue: + name: Create team sync issue + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - name: Create team sync issue + uses: imjohnbo/issue-bot@3daae12aa54d38685d7ff8459fc8a2aee8cea98b + with: + assignees: "" + labels: "community, meeting" + date: "`R Sys.Date()`" + title: "$(date) sample Community Meeting !" + + body: | + ### Agenda + + - [ ] Check-ins + - [ ] Discussion points + - Please add a topic in this thread and add a link to the GitHub issue associated with the topic. + - Please make sure you give folks enough time to review/discuss the topic offline on GitHub before coming into the meeting + - (optional) Paste the image of an animal smile_cat + + ### Discussion Points + Add things to discuss below + + pinned: true + close-previous: true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From dd7044c4976f972e0d5c26a54dd5cf3af7d1171d Mon Sep 17 00:00:00 2001 From: Aman Kumar Sarraf <90839355+AmanSarraf@users.noreply.github.com> Date: Sat, 31 Dec 2022 13:11:27 +0530 Subject: [PATCH 2/7] Update Agenda.yml --- .github/workflows/Agenda.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Agenda.yml b/.github/workflows/Agenda.yml index 4e1caf6..55f219d 100644 --- a/.github/workflows/Agenda.yml +++ b/.github/workflows/Agenda.yml @@ -1,7 +1,7 @@ name: Weekly Team Sync on: schedule: - - cron: 10 * * * * + - cron: 2 * * * * jobs: create_issue: From 3a35c8932174b1cdef911e64fa82488ef9a1d34e Mon Sep 17 00:00:00 2001 From: Aman Kumar Sarraf <90839355+AmanSarraf@users.noreply.github.com> Date: Sat, 31 Dec 2022 13:18:56 +0530 Subject: [PATCH 3/7] Update Agenda.yml --- .github/workflows/Agenda.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/Agenda.yml b/.github/workflows/Agenda.yml index 55f219d..5b0ed6b 100644 --- a/.github/workflows/Agenda.yml +++ b/.github/workflows/Agenda.yml @@ -15,8 +15,7 @@ jobs: with: assignees: "" labels: "community, meeting" - date: "`R Sys.Date()`" - title: "$(date) sample Community Meeting !" + title: " `r format(Sys.Date(), "%d %B %Y")` Community Meeting !" body: | ### Agenda From ce31457340dcad096429f02b63264175a429ab72 Mon Sep 17 00:00:00 2001 From: Aman Kumar Sarraf <90839355+AmanSarraf@users.noreply.github.com> Date: Sat, 31 Dec 2022 13:22:19 +0530 Subject: [PATCH 4/7] Update Agenda.yml --- .github/workflows/Agenda.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Agenda.yml b/.github/workflows/Agenda.yml index 5b0ed6b..23d6f38 100644 --- a/.github/workflows/Agenda.yml +++ b/.github/workflows/Agenda.yml @@ -15,7 +15,7 @@ jobs: with: assignees: "" labels: "community, meeting" - title: " `r format(Sys.Date(), "%d %B %Y")` Community Meeting !" + title: " Community Meeting !" body: | ### Agenda From 91f963748400c20126653e64b2478f179e7cf368 Mon Sep 17 00:00:00 2001 From: Aman Kumar Sarraf <90839355+AmanSarraf@users.noreply.github.com> Date: Sat, 31 Dec 2022 13:49:12 +0530 Subject: [PATCH 5/7] Update Agenda.yml --- .github/workflows/Agenda.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Agenda.yml b/.github/workflows/Agenda.yml index 23d6f38..da1b94e 100644 --- a/.github/workflows/Agenda.yml +++ b/.github/workflows/Agenda.yml @@ -10,12 +10,16 @@ jobs: permissions: issues: write steps: + - name: Today's Date + run: echo "TODAY=$(date '+%d %B %Y')" >> $GITHUB_ENV - name: Create team sync issue - uses: imjohnbo/issue-bot@3daae12aa54d38685d7ff8459fc8a2aee8cea98b + uses: imjohnbo/issue-bot@v3 + with: assignees: "" labels: "community, meeting" - title: " Community Meeting !" + + title: " ${{env.TODAY}} Community Meeting !" body: | ### Agenda From 36ef63fa0117ef25039b23cde20d12c6d7bcc6a7 Mon Sep 17 00:00:00 2001 From: Aman Kumar Sarraf <90839355+AmanSarraf@users.noreply.github.com> Date: Sat, 31 Dec 2022 15:09:12 +0530 Subject: [PATCH 6/7] Added workflow for community meeting --- .github/workflows/Agenda.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Agenda.yml b/.github/workflows/Agenda.yml index da1b94e..df7199b 100644 --- a/.github/workflows/Agenda.yml +++ b/.github/workflows/Agenda.yml @@ -1,7 +1,7 @@ name: Weekly Team Sync on: schedule: - - cron: 2 * * * * + - cron: 00 17 * * 1 jobs: create_issue: @@ -11,7 +11,7 @@ jobs: issues: write steps: - name: Today's Date - run: echo "TODAY=$(date '+%d %B %Y')" >> $GITHUB_ENV + run: echo "TODAY=$(date '+%B %d, %Y')" >> $GITHUB_ENV - name: Create team sync issue uses: imjohnbo/issue-bot@v3 @@ -19,7 +19,7 @@ jobs: assignees: "" labels: "community, meeting" - title: " ${{env.TODAY}} Community Meeting !" + title: " ${{env.TODAY}} Community Meeting " body: | ### Agenda @@ -28,7 +28,7 @@ jobs: - [ ] Discussion points - Please add a topic in this thread and add a link to the GitHub issue associated with the topic. - Please make sure you give folks enough time to review/discuss the topic offline on GitHub before coming into the meeting - - (optional) Paste the image of an animal smile_cat + - (optional) Paste the image of an animal 😸 ### Discussion Points Add things to discuss below From 607449296fe3e740b4b55d1f76a4d9cea889c67c Mon Sep 17 00:00:00 2001 From: Aman Kumar Sarraf <90839355+AmanSarraf@users.noreply.github.com> Date: Tue, 10 Jan 2023 02:54:27 +0530 Subject: [PATCH 7/7] Update .github/workflows/Agenda.yml Co-authored-by: Matthias Diester --- .github/workflows/Agenda.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Agenda.yml b/.github/workflows/Agenda.yml index df7199b..942b82c 100644 --- a/.github/workflows/Agenda.yml +++ b/.github/workflows/Agenda.yml @@ -19,7 +19,7 @@ jobs: assignees: "" labels: "community, meeting" - title: " ${{env.TODAY}} Community Meeting " + title: "${{env.TODAY}} Community Meeting" body: | ### Agenda