Skip to content

Commit

Permalink
Create thank_contributors.yaml (#4775)
Browse files Browse the repository at this point in the history
* Create thank_contributors.yaml

* Update thank_contributors.yaml
  • Loading branch information
zkoppert committed Oct 19, 2023
1 parent f823c56 commit fb9b3e2
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/thank_contributors.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Monthly contributor report
on:
workflow_dispatch:
schedule:
- cron: '3 2 1 * *'

permissions:
issues: write

jobs:
contributor_report:
name: contributor report
runs-on: ubuntu-latest

steps:

- 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/contributors@v1
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
START_DATE: ${{ env.START_DATE }}
END_DATE: ${{ env.END_DATE }}
REPOSITORY: super-linter/super-linter

- name: Create issue
uses: peter-evans/create-issue-from-file@v4
with:
title: Thank you super-linter contributors (${{ env.START_DATE }}..${{ env.END_DATE }})
token: ${{ secrets.GITHUB_TOKEN }}
content-filepath: ./contributors.md

0 comments on commit fb9b3e2

Please sign in to comment.