Kumi
f8a4ae8786
Some checks failed
/ chores (push) Failing after 8s
Updated the trigger event for the chores workflow from on commit to on push to ensure the workflow runs whenever code is pushed to the repository. This enhances automation by aligning the execution of routine tasks with code integration practices.
9 lines
No EOL
150 B
YAML
9 lines
No EOL
150 B
YAML
on: [push]
|
|
#schedule:
|
|
# - cron: '0 12 * * 5'
|
|
|
|
jobs:
|
|
chores:
|
|
steps:
|
|
- name: Create Chores Issue
|
|
run: python3 scripts/chores.py |