From 69b82bf0b603f6b9062d50bff7f92622d1dc5955 Mon Sep 17 00:00:00 2001 From: Aman Kumar Sarraf <90839355+AmanSarraf@users.noreply.github.com> Date: Wed, 26 Oct 2022 10:35:14 +0530 Subject: [PATCH] Create Agenda_Issue.yml --- .github/workflows/Agenda_Issue.yml | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/Agenda_Issue.yml diff --git a/.github/workflows/Agenda_Issue.yml b/.github/workflows/Agenda_Issue.yml new file mode 100644 index 0000000..4f5bcb7 --- /dev/null +++ b/.github/workflows/Agenda_Issue.yml @@ -0,0 +1,34 @@ +name: Weekly Team Sync +on: + schedule: + - cron: 00 7 * * 1 + +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" + title: "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 }}