Skip to content
Closed
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
3 changes: 2 additions & 1 deletion .github/workflows/apply-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ jobs:
uses: actions/github-script@v7
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
SLACK_CHANNEL_ID: ${{ secrets.SLACK_CHANNEL_ID }}
with:
script: |
// Find the thread timestamp
Expand All @@ -121,7 +122,7 @@ jobs:
'Content-Type': 'application/json',
},
body: JSON.stringify({
channel: process.env.SLACK_CHANNEL_ID || 'C1234567890',
channel: process.env.SLACK_CHANNEL_ID,
timestamp: threadTs,
name: 'white_check_mark',
}),
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/create-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ jobs:
uses: actions/github-script@v7
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
SLACK_CHANNEL_ID: ${{ secrets.SLACK_CHANNEL_ID }}
with:
script: |
const buildOutput = JSON.parse(`${{ steps.build.outputs.build_output }}`);
Expand Down Expand Up @@ -154,7 +155,7 @@ jobs:
'Content-Type': 'application/json',
},
body: JSON.stringify({
channel: process.env.SLACK_CHANNEL_ID || 'C1234567890', // Replace with your channel ID
channel: process.env.SLACK_CHANNEL_ID,
text: initialMessage,
}),
});
Expand All @@ -179,7 +180,7 @@ jobs:
'Content-Type': 'application/json',
},
body: JSON.stringify({
channel: process.env.SLACK_CHANNEL_ID || 'C1234567890',
channel: process.env.SLACK_CHANNEL_ID,
thread_ts: threadTs,
text: slackMessage,
}),
Expand Down
1 change: 1 addition & 0 deletions pql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ The bot is configured as "DocsBot" with specific behavior patterns:
- Minimum viable responses
- No marketing language
- Always provide user-facing messages before actions
- Utilize existing artifacts — if available — for quicker retrieval and better performance

### Data Layer

Expand Down