Skip to content

Monthly contributor reports #30

Monthly contributor reports

Monthly contributor reports #30

Workflow file for this run

name: Monthly contributor reports
on:
workflow_dispatch:
schedule:
- cron: "3 2 1 * *"
permissions: {}
jobs:
contributor_report:
name: contributor reports
runs-on: ubuntu-latest
permissions:
discussions: write # Create the monthly thank-you discussion via abirismyname/create-discussion
steps:
- uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
with:
egress-policy: audit
- name: Get dates for last month
shell: bash
run: |
# Calculate the first day of the previous month
start_date=$(date -d "last month" +%Y-%m-01)
# Calculate the last day of the previous month
end_date=$(date -d "$start_date +1 month -1 day" +%Y-%m-%d)
#Set an environment variable with the date range
echo "START_DATE=$start_date" >> "$GITHUB_ENV"
echo "END_DATE=$end_date" >> "$GITHUB_ENV"
- name: Run contributor action
uses: github-community-projects/contributors@7e077779e5e7bf810cc722e15b38ee63f86b880e # v2.0.18
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
START_DATE: ${{ env.START_DATE }}
END_DATE: ${{ env.END_DATE }}
REPOSITORY: "github/explore,github/opensource.guide,github/go-spdx,github-community-projects/internal-contribution-forks,github-community-projects/stale-repos,github-community-projects/evergreen,github-community-projects/issue-metrics,github/github-ospo,github-community-projects/contributors,github/automatic-contrib-prs,github-community-projects/cleanowners,github-community-projects/measure-innersource"
SPONSOR_INFO: "true"
LINK_TO_PROFILE: "true"
- name: Create GitHub Discussion
uses: abirismyname/create-discussion@c2b7c825241769dda523865ae444a879f6bbd0e0 # v2.1.0
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
title: "Thank you Contributors!"
body-filepath: ./contributors.md
repository-id: "R_kgDOJDwwMQ"
category-id: "DIC_kwDOJDwwMc4CUmf8"