Update migration message #6
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: Yearly Website Update | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: 0 0 1 7 * | ||
jobs: | ||
create_yearly_update: | ||
name: Create yearly update for the website | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- name: Create the issue | ||
run: | | ||
new_issue_url=$(gh issue create \ | ||
--title "$TITLE" \ | ||
--assignee "$ASSIGNEES" \ | ||
--label "$LABELS" \ | ||
--body "$BODY") | ||
if [[ $PINNED == true ]]; then | ||
gh issue pin "$new_issue_url" | ||
fi | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GH_REPO: ${{ github.repository }} | ||
PINNED: true | ||
TITLE: Yearly Website Update | ||
ASSIGNEES: doganulus | ||
LABELS: docs | ||
BODY: | | ||
### Work Items | ||
- [ ] Update promotional materials | ||
- [ ] Update enrolment and graduation statistics | ||
- [ ] Update graduation photos | ||
- [ ] Review mission statements and other policies |