Skip to content

GitHub Action to Generate Developer Meeting Slides

License

Notifications You must be signed in to change notification settings

eic/generate-meeting-slides

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Action to Generate Developer Meeting Slides

Test

This GitHub Action produces developer meeting slides with issues, PRs, etc..., during a specified period.

Instructions

Prerequisites

This action has no prerequisites.

Example

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