Kumi
94cd8089b1
Implemented a new Forgejo Action workflow to automatically create weekly chores issues based on a Python script. This workflow triggers on commits and the Python script uses project-specific environment variables to customize the issue creation, including setting due dates and assigning users. Streamlines project maintenance and ensures regular task management.
9 lines
No EOL
152 B
YAML
9 lines
No EOL
152 B
YAML
on: [commit]
|
|
#schedule:
|
|
# - cron: '0 12 * * 5'
|
|
|
|
jobs:
|
|
chores:
|
|
steps:
|
|
- name: Create Chores Issue
|
|
run: python3 scripts/chores.py |