This GitHub Action produces developer meeting slides with issues, PRs, etc..., during a specified period.
This action has no prerequisites.
You can use this GitHub Action in your own repository with uses: eic/generate-meeting-slides@v2
.
A minimal job example is:
on:
schedule:
- cron: '30 8 * * 3' # 08:30 UTC on Wednesday
workflow_dispatch:
jobs:
generate-weekly-meeting-slides:
runs-on: ubuntu-latest
steps:
- uses: eic/generate-meeting-slides@v2
with:
since: "1 week ago"
config: |
repos:
- name: ${{ github.repository }}
do_stale: true
stale_label: stale
wip_label: WIP
do_open_prs: true
do_merged_prs: true
do_recent_issues: true