Merge pull request #2 from CS489-Tmux-Team8/shrey-add-schedule-for-doc-reviews

Add a new workflow for doc reviews
pull/3901/head
Shrey Patel 2024-03-19 20:55:21 -04:00 committed by GitHub
commit b95aec5f28
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,12 @@
---
title: "Biannual Documentation Review"
labels: "documentation, review"
---
It's time for our biannual review of the documentation. @Documentation_Reviewers
Please go over the following:
- Are all docs up to date?
- Is any information missing?
- Are there any new features or changes that need to be documented?

View File

@ -0,0 +1,19 @@
name: Documentation Review Reminder
on:
schedule:
# Schedule to run at 00:00 on the 1st day of January and July (every 6 months)
- cron: '0 0 1 1,7 *'
workflow_dispatch:
jobs:
create_issue:
runs-on: ubuntu-latest
steps:
- name: Create Issue
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
filename: .github/ISSUE_TEMPLATE/documentation_review.md