Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/create-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ on:
schedule:
# Cron syntax is "minute[0-59] hour[0-23] date[1-31] month[1-12] day[0-6]". '*' is 'any value,' and multiple values
# can be specified with comma-separated lists. All times are UTC.
# So this expression means "run at 12 PM UTC, every Friday".
- cron: "0 12 * * 5"
# So this expression means "run at 4:30 AM UTC (10:00 AM IST), every Friday".
- cron: "30 4 * * 5"


jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/daily-smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ on:
schedule:
# Cron syntax is "minute[0-59] hour[0-23] date[1-31] month[1-12] day[0-6]". '*' is 'any value', and multiple values
# can be specified with comma-separated lists. All times are UTC.
# So this expression means "run at 17:30 UTC every day". This time was chosen because it corresponds to
# 9:30AM PST, meaning that any issues will be surfaced on working days when people are likely to be awake and online.
- cron: "30 17 * * 1-5"
# So this expression means "run at 04:00 UTC every weekday". This time was chosen because it corresponds to
# 9:30 AM IST, meaning that any issues will be surfaced on working days when people are likely to be awake and online.
- cron: "0 4 * * 1-5"

jobs:
# Step 1: Build the tarballs so they can be installed locally.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/production-heartbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
schedule:
# Cron syntax is "minute[0-59] hour[0-23] date[1-31] month[1-12] day[0-6]". '*' is 'any value', and multiple values
# can be specified with comma-separated lists. All times are UTC.
# So this expression means "run at 45 minutes past 1, 5, and 9 AM/PM UTC". The hours were chosen so that
# the jobs run only close to business hours of Central Time.
# So this expression means "run at 30 minutes past 3, 7, and 11 AM UTC". The hours were chosen so that
# the jobs run during IST business hours (9:00 AM, 1:00 PM, 5:00 PM IST) with 4-hour gaps.
# Days were chosen to run only from Monday through Friday.
- cron: '45 13,17,21 * * 1,2,3,4,5'
- cron: '30 3,7,11 * * 1,2,3,4,5'
jobs:
production-heartbeat:
strategy:
Expand Down
2 changes: 1 addition & 1 deletion SHA256.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ make sure that their SHA values match the values in the list below.
shasum -a 256 <location_of_the_downloaded_file>

3. Confirm that the SHA in your output matches the value in this list of SHAs.
51eef4507dde88be87f60f3fca05278cd8bf3f0d03e01c9d07ac961bb4e0096e ./extensions/sfdx-code-analyzer-vscode-1.15.0.vsix
1b12eb4a77ab7414bd5860a38f544e51f080f1dcff0771934b9f72360bc6a588 ./extensions/sfdx-code-analyzer-vscode-1.16.0.vsix
4. Change the filename extension for the file that you downloaded from .zip to
.vsix.

Expand Down
Loading
Loading