Skip to content

Commit b7de065

Browse files
authored
Added echo agent for dev (#1636)
* "Added echo agent for dev" * Update Node.js setup config * Enable pull request trigger * Remove default job status * Update Slack action name * Update agent message * Update node versions in CI * Expand node version testing * "Refactor test setup action" * Update Node.js version * Refactor README descriptions * Update node versions in CI
1 parent 6905aef commit b7de065

19 files changed

+18
-35
lines changed

.github/actions/slack-notification/action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Slack Notification"
1+
name: "Slack Notifications"
22
description: "Send Slack notification for workflow status"
33
inputs:
44
workflow-name:
@@ -7,7 +7,6 @@ inputs:
77
status:
88
description: "Status of the workflow (success, failure, cancelled)"
99
required: false
10-
default: ${{ job.status }}
1110
slack-bot-token:
1211
description: "Slack bot token"
1312
required: true

.github/actions/xmtp-test-setup/action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,13 @@ inputs:
1717
runs:
1818
using: "composite"
1919
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v4
22+
2023
- name: Setup Node.js
2124
uses: actions/setup-node@v4
2225
with:
23-
node-version: "20"
26+
node-version: 22
2427

2528
- name: Enable Corepack
2629
run: corepack enable

.github/workflows/AgentGroups.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
REGION: ${{ vars.REGION }}
2222
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
2323
steps:
24-
- uses: actions/checkout@v4
25-
2624
- name: Setup test env
2725
uses: ./.github/actions/xmtp-test-setup
2826

@@ -59,8 +57,6 @@ jobs:
5957
REGION: ${{ vars.REGION }}
6058
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
6159
steps:
62-
- uses: actions/checkout@v4
63-
6460
- name: Setup test env
6561
uses: ./.github/actions/xmtp-test-setup
6662

.github/workflows/AgentHealth.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
REGION: ${{ vars.REGION }}
2222
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
2323
steps:
24-
- uses: actions/checkout@v4
25-
2624
- name: Setup test env
2725
uses: ./.github/actions/xmtp-test-setup
2826

.github/workflows/AgentText.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
REGION: ${{ vars.REGION }}
2222
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
2323
steps:
24-
- uses: actions/checkout@v4
25-
2624
- name: Setup test env
2725
uses: ./.github/actions/xmtp-test-setup
2826

.github/workflows/Browser.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
REGION: ${{ vars.REGION }}
2121
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
2222
steps:
23-
- uses: actions/checkout@v4
2423
- name: Setup test env
2524
uses: ./.github/actions/xmtp-test-setup
2625

.github/workflows/Delivery.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
ERROR_TRESHOLD: 90
2323
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
2424
steps:
25-
- uses: actions/checkout@v4
2625
- name: Setup test env
2726
uses: ./.github/actions/xmtp-test-setup
2827

.github/workflows/NetworkChaos.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ jobs:
4040
4141
- name: Set up Node.js
4242
uses: actions/setup-node@v4
43-
with:
44-
node-version: "20"
4543

4644
- name: Enable Corepack
4745
run: corepack enable

.github/workflows/Performance-L.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
REGION: ${{ vars.REGION }}
2323
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
2424
steps:
25-
- uses: actions/checkout@v4
26-
2725
- name: Setup test env
2826
uses: ./.github/actions/xmtp-test-setup
2927
with:

.github/workflows/Performance-M.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
REGION: ${{ vars.REGION }}
2323
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
2424
steps:
25-
- uses: actions/checkout@v4
26-
2725
- name: Setup test env
2826
uses: ./.github/actions/xmtp-test-setup
2927
with:

0 commit comments

Comments
 (0)