Skip to content

Commit 6d64a6e

Browse files
committed
Added profiling and appsec
1 parent 4a7c8b8 commit 6d64a6e

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

.github/workflows/appsec.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,20 @@ on:
66
branches: [master]
77
schedule:
88
- cron: 0 4 * * *
9+
workflow_dispatch:
10+
inputs:
11+
latest-version:
12+
description: 'Node version to use'
13+
required: false
14+
type: string
915

1016
concurrency:
11-
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
17+
group: ${{ github.workflow }}-${{ inputs.latest-version }}-${{ github.ref || github.run_id }}"
1218
cancel-in-progress: true
1319

1420
env:
1521
MOCHA_OPTIONS: ${{ github.ref == 'refs/heads/master' && '--retries 1' || '' }}
22+
LATEST_VERSION: ${{ inputs.latest-version }}
1623

1724
jobs:
1825
macos:

.github/workflows/nightly-dispatch.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ jobs:
5050
- llmobs
5151
- platform
5252
- serverless
53+
- appsec
54+
- profiling
5355
runs-on: ubuntu-latest
5456
steps:
5557
- name: Trigger ${{matrix.workflow }} workflow

.github/workflows/profiling.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,20 @@ on:
66
branches: [master]
77
schedule:
88
- cron: 0 4 * * *
9+
workflow_dispatch:
10+
inputs:
11+
latest-version:
12+
description: 'Node version to use'
13+
required: false
14+
type: string
915

1016
concurrency:
11-
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
17+
group: ${{ github.workflow }}-${{ inputs.latest-version }}-${{ github.ref || github.run_id }}"
1218
cancel-in-progress: true
1319

1420
env:
1521
MOCHA_OPTIONS: ${{ github.ref == 'refs/heads/master' && '--retries 1' || '' }}
22+
LATEST_VERSION: ${{ inputs.latest-version }}
1623

1724
jobs:
1825
macos:

0 commit comments

Comments
 (0)