Skip to content

Commit 51e3cfe

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/multi-16939dfd4d
2 parents cfb2b4f + 8661ac1 commit 51e3cfe

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.github/workflows/daily-scan.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88
name: Daily scan
99

1010
on:
11-
schedule:
12-
- cron: '0 18 * * *' # scheduled to run at 18:00 UTC every day
11+
schedule: # scheduled to run at 14:00, 20:00, 02:00 UTC every day
12+
- cron: '0 14 * * *' # 6:00/7:00 PST/PDT (14:00 UTC)
13+
- cron: '0 20 * * *' # 12:00/13:00 PST/PDT (20:00 UTC)
14+
- cron: '0 02 * * *' # 18:00/19:00 PST/PDT (02:00 UTC)
1315
workflow_dispatch: # be able to run the workflow on demand
1416

1517
env:

.github/workflows/pr-build.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,15 @@ jobs:
3838
run: npm ci
3939
- name: Compile all NPM projects
4040
run: npm run compile
41+
- name: Build Tarball and Image Files
42+
uses: ./.github/actions/artifacts_build
43+
with:
44+
image_uri_with_tag: pr-build/${{ matrix.node }}
45+
push_image: false
46+
load_image: true
47+
node_version: ${{ matrix.node }}
48+
package_name: aws-distro-opentelemetry-node-autoinstrumentation
49+
os: ubuntu-latest
4150
- name: Build Lambda Layer
4251
run: npm run build-lambda
4352
- name: Unit tests (Full)

0 commit comments

Comments
 (0)