-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: updating source for new computer
- Loading branch information
Showing
8 changed files
with
180 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ description: "Workflow for installing dependencies" | |
runs: | ||
using: "composite" | ||
steps: | ||
- uses: pnpm/[email protected].2 | ||
- uses: pnpm/[email protected].4 | ||
with: | ||
version: latest | ||
- name: Use Node.js | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,81 @@ | ||
import * as events from 'aws-cdk-lib/aws-events'; | ||
|
||
export const syllabusSchedule: { [name: string]: events.Schedule } = { | ||
'regular': | ||
events.Schedule.cron({ minute: '0', hour: '16', day: '1', month: '*', year: '*' }), | ||
'fall-pre': | ||
events.Schedule.cron({ minute: '0', hour: '16', day: '19,21,23', month: 'JUL,AUG', year: '*' }), | ||
'fall-reg1': | ||
events.Schedule.cron({ minute: '0', hour: '16', day: '4,7,10,13,15,17', month: 'SEP', year: '*' }), | ||
'fall-reg2': | ||
events.Schedule.cron({ minute: '0', hour: '16', day: '20,23,25', month: 'SEP', year: '*' }), | ||
'fall-reg3': | ||
events.Schedule.cron({ minute: '0', hour: '16', day: '28,30', month: 'SEP', year: '*' }), | ||
'fall-reg4': | ||
events.Schedule.cron({ minute: '0', hour: '16', day: '3,5,8', month: 'OCT', year: '*' }), | ||
'spring-pre': | ||
events.Schedule.cron({ minute: '0', hour: '16', day: '14,24', month: 'FEB', year: '*' }), | ||
'spring-reg1': | ||
events.Schedule.cron({ minute: '0', hour: '16', day: '4,7,10,13,16,18,21,24,27', month: 'MAR', year: '*' }), | ||
'spring-reg2': | ||
events.Schedule.cron({ minute: '0', hour: '16', day: '3,5,8', month: 'APR', year: '*' }), | ||
'spring-reg3': | ||
events.Schedule.cron({ minute: '0', hour: '16', day: '16,20,24,26,28', month: 'APR', year: '*' }), | ||
'spring-reg4': | ||
events.Schedule.cron({ minute: '0', hour: '16', day: '9,12,14,16', month: 'MAY', year: '*' }), | ||
'regular': events.Schedule.cron({ | ||
minute: '0', | ||
hour: '16', | ||
day: '1,12', | ||
month: '*', | ||
year: '*', | ||
}), | ||
'fall-pre': events.Schedule.cron({ | ||
minute: '0', | ||
hour: '16', | ||
day: '19,21,23', | ||
month: 'JUL,AUG', | ||
year: '*', | ||
}), | ||
'fall-reg1': events.Schedule.cron({ | ||
minute: '0', | ||
hour: '16', | ||
day: '4,7,10,13,15,17', | ||
month: 'SEP', | ||
year: '*', | ||
}), | ||
'fall-reg2': events.Schedule.cron({ | ||
minute: '0', | ||
hour: '16', | ||
day: '20,23,25', | ||
month: 'SEP', | ||
year: '*', | ||
}), | ||
'fall-reg3': events.Schedule.cron({ | ||
minute: '0', | ||
hour: '16', | ||
day: '28,30', | ||
month: 'SEP', | ||
year: '*', | ||
}), | ||
'fall-reg4': events.Schedule.cron({ | ||
minute: '0', | ||
hour: '16', | ||
day: '3,5,8', | ||
month: 'OCT', | ||
year: '*', | ||
}), | ||
'spring-pre': events.Schedule.cron({ | ||
minute: '0', | ||
hour: '16', | ||
day: '14,24', | ||
month: 'FEB', | ||
year: '*', | ||
}), | ||
'spring-reg1': events.Schedule.cron({ | ||
minute: '0', | ||
hour: '16', | ||
day: '4,7,10,13,16,18,21,24,27', | ||
month: 'MAR', | ||
year: '*', | ||
}), | ||
'spring-reg2': events.Schedule.cron({ | ||
minute: '0', | ||
hour: '16', | ||
day: '3,5,8', | ||
month: 'APR', | ||
year: '*', | ||
}), | ||
'spring-reg3': events.Schedule.cron({ | ||
minute: '0', | ||
hour: '16', | ||
day: '16,20,24,26,28', | ||
month: 'APR', | ||
year: '*', | ||
}), | ||
'spring-reg4': events.Schedule.cron({ | ||
minute: '0', | ||
hour: '16', | ||
day: '9,12,14,16', | ||
month: 'MAY', | ||
year: '*', | ||
}), | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.