Skip to content

Commit bd45785

Browse files
committed
649 - Update Github Action with correct secret name for Slack bot
1 parent e61a818 commit bd45785

4 files changed

Lines changed: 18 additions & 134 deletions

File tree

.github/workflows/summarise_upcoming_events.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- cron: '0 7 * * 1' # Monday at 7am GMT
77

88
jobs:
9-
summarise_events_with_llms:
9+
summarise_events_with_llm:
1010
if: github.repository == 'Women-Coding-Community/WomenCodingCommunity.github.io'
1111
runs-on: ubuntu-latest
1212

@@ -38,4 +38,4 @@ jobs:
3838
python summarise_events_with_llms.py --channel events
3939
env:
4040
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
41-
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
41+
SLACK_BOT_WEBHOOK: ${{ secrets.SLACK_BOT_WEBHOOK }}

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ tools/blog_automation/service_account_key.json
1313
tools/blog_automation/venv
1414
.env
1515
tools/llm_meetup_summary/venv
16+
tools/llm_meetup_summary/examples/current_prompt.md
17+
18+
# A .secrets file can be used for locally testing a .GitHub Action
19+
tools/llm_meetup_summary/.secrets
1620

1721
# Claude Code local settings (may contain personal preferences)
1822
.claude/settings.local.json

0 commit comments

Comments
 (0)