Monthly check GitHub usernames #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Monthly checks | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 1 * *" | |
jobs: | |
check-usernames: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Restore lychee cache | |
id: restore-cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: .lycheecache | |
key: cache-lychee-${{ github.sha }} | |
restore-keys: cache-lychee- | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- run: | | |
cat .github/CODEOWNERS | grep -o "@[a-zA-Z0-9_-]\+" | sort -u | sed 's/@/https:\/\/api.github.com\/users\//' > usernames.txt | |
cat MAINTAINERS.md | grep -o "\*\*.*@[a-zA-Z0-9_-]\+.*\*\*" | grep -o "@[a-zA-Z0-9_-]\+" | sort -u | sed 's/@/https:\/\/api.github.com\/users\//' >> usernames.txt | |
sort -u usernames.txt -o usernames.txt | |
- name: Lychee URL checker | |
uses: lycheeverse/lychee-action@v1 | |
id: lychee | |
with: | |
args: >- | |
--cache | |
--verbose | |
--no-progress | |
--max-concurrency 25 | |
usernames.txt | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Find the last report issue open | |
uses: micalevisk/last-issue-action@v2 | |
id: last-issue | |
with: | |
state: open | |
labels: check usernames | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update last report open issue created | |
if: ${{ env.lychee_exit_code != 0 }} | |
uses: peter-evans/create-issue-from-file@v5 | |
with: | |
title: GitHub usernames with errors | |
content-filepath: lychee/out.md | |
issue-number: ${{ steps.last-issue.outputs.issue-number }} | |
labels: check usernames | |
- name: Close last report open issue | |
if: ${{ env.lychee_exit_code == 0 && steps.last-issue.outputs.has-found == 'true' }} | |
run: gh issue close ${{ steps.last-issue.outputs.issue-number }} | |
- name: Save lychee cache | |
uses: actions/cache/save@v4 | |
if: always() | |
with: | |
path: .lycheecache | |
key: ${{ steps.restore-cache.outputs.cache-primary-key }} | |
issue-metrics: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: read | |
steps: | |
- name: Get dates for last month | |
shell: bash | |
run: | | |
# Calculate the first day of the previous month | |
first_day=$(date -d "last month" +%Y-%m-01) | |
# Calculate the last day of the previous month | |
last_day=$(date -d "$first_day +1 month -1 day" +%Y-%m-%d) | |
#Set an environment variable with the date range | |
echo "$first_day..$last_day" | |
echo "last_month=$first_day..$last_day" >> "$GITHUB_ENV" | |
- name: Run issue-metrics tool | |
uses: github/issue-metrics@v3 | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SEARCH_QUERY: 'repo:owner/repo is:issue created:${{ env.last_month }} -reason:"not planned"' | |
- run: | | |
cat ./issue_metrics.md > $GITHUB_STEP_SUMMARY |