Skip to content

Commit d4be345

Browse files
authored
Disable pull_request trigger (#1638)
* Disable pull_request trigger * "Add checkout step in workflow" * Enable pull_request in AgentHealth * Add checkout step to workflows * Disable pull_request trigger * "Add checkout step to workflows" * Add test error step * Remove Yarn setup in workflow * Update actions and remove Corepack * "Add job status to notifications" * Add test env to workflow * Remove test error step
1 parent 9b814f8 commit d4be345

16 files changed

+33
-55
lines changed

.github/workflows/AgentGroups.yml

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

@@ -57,6 +58,7 @@ jobs:
5758
REGION: ${{ vars.REGION }}
5859
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
5960
steps:
61+
- uses: actions/checkout@v4
6062
- name: Setup test env
6163
uses: ./.github/actions/xmtp-test-setup
6264

.github/workflows/AgentHealth.yml

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

@@ -42,4 +43,5 @@ jobs:
4243
uses: ./.github/actions/slack-notification
4344
with:
4445
workflow-name: "Agent health (${{ matrix.test }}, ${{ matrix.env }})"
46+
status: ${{ job.status }}
4547
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}

.github/workflows/AgentText.yml

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

@@ -42,4 +43,5 @@ jobs:
4243
uses: ./.github/actions/slack-notification
4344
with:
4445
workflow-name: "Agent health (${{ matrix.test }}, ${{ matrix.env }})"
46+
status: ${{ job.status }}
4547
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}

.github/workflows/Browser.yml

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

.github/workflows/Delivery.yml

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

@@ -40,4 +41,5 @@ jobs:
4041
uses: ./.github/actions/slack-notification
4142
with:
4243
workflow-name: "Delivery (${{ matrix.test }}, ${{ matrix.env }})"
44+
status: ${{ job.status }}
4345
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}

.github/workflows/Deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
- name: Setup Git
1818
run: |

.github/workflows/NetworkChaos.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ jobs:
4141
- name: Set up Node.js
4242
uses: actions/setup-node@v4
4343

44-
- name: Enable Corepack
45-
run: corepack enable
46-
4744
- name: Cache dependencies
4845
uses: actions/cache@v4
4946
with:

.github/workflows/Performance-L.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
REGION: ${{ vars.REGION }}
2323
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
2424
steps:
25+
- uses: actions/checkout@v4
2526
- name: Setup test env
2627
uses: ./.github/actions/xmtp-test-setup
2728
with:

.github/workflows/Performance-M.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
REGION: ${{ vars.REGION }}
2323
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
2424
steps:
25+
- uses: actions/checkout@v4
2526
- name: Setup test env
2627
uses: ./.github/actions/xmtp-test-setup
2728
with:

.github/workflows/Performance.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
REGION: ${{ vars.REGION }}
2525
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
2626
steps:
27+
- uses: actions/checkout@v4
2728
- name: Setup test env
2829
uses: ./.github/actions/xmtp-test-setup
2930
with:

0 commit comments

Comments
 (0)