Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/summarise_upcoming_events.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- cron: '0 7 * * 1' # Monday at 7am GMT

jobs:
summarise_events_with_llms:
summarise_events_with_llm:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My suggestion is to change this job to support also manual execution, so you can test without to wait until next Monday.
https://github.com/Women-Coding-Community/WomenCodingCommunity.github.io/blob/main/.github/workflows/add_new_mentors.yml#L4

And also for testing you can use to run the job on PR, so you can test before you merge it:
https://github.com/Women-Coding-Community/WomenCodingCommunity.github.io/blob/main/.github/workflows/pull_request.yml#L3-L5

if: github.repository == 'Women-Coding-Community/WomenCodingCommunity.github.io'
runs-on: ubuntu-latest

Expand Down Expand Up @@ -38,4 +38,4 @@ jobs:
python summarise_events_with_llms.py --channel events
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_BOT_WEBHOOK: ${{ secrets.SLACK_BOT_WEBHOOK }}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ tools/blog_automation/service_account_key.json
tools/blog_automation/venv
.env
tools/llm_meetup_summary/venv
tools/llm_meetup_summary/examples/current_prompt.md

# A .secrets file can be used for locally testing a .GitHub Action
tools/llm_meetup_summary/.secrets

# Claude Code local settings (may contain personal preferences)
.claude/settings.local.json
Expand Down
Loading