-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(actions): support cron schedule task #26655
Commits on Mar 10, 2023
-
chore(actions): support cron schedule task.
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8650571 - Browse repository at this point
Copy the full SHA 8650571View commit details -
chore(license): add cron v3 license
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for f1eb0ad - Browse repository at this point
Copy the full SHA f1eb0adView commit details -
Configuration menu - View commit details
-
Copy full SHA for fffb455 - Browse repository at this point
Copy the full SHA fffb455View commit details -
chore(deps): upgrade go module
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 054873b - Browse repository at this point
Copy the full SHA 054873bView commit details
Commits on Mar 14, 2023
-
feat: refactor schedule tasks management in actions service
- Remove `robfig/cron/v3 v3.0.1` from `go.mod` - Remove `newSchedule()` and `resetSchedule()` functions from `services/actions/init.go` - Change return type of `CreateScheduleTask()` from `(int, error)` to `error` in `services/actions/notifier_helper.go` - Add `services/actions/schedule_tasks.go` file - Add `StartScheduleTasks()` and `startTasks()` functions to `services/actions/schedule_tasks.go` - Register `start_schedule_tasks` task in `services/cron/tasks_actions.go` Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5424793 - Browse repository at this point
Copy the full SHA 5424793View commit details -
feat: add support for schedule specs and tasks
- Add a new function `GetSchedulesMapByIDs` to retrieve schedules by ID - Create new schedule and schedule spec when creating a schedule task - Delete schedule specs when deleting a schedule - Add a new model `ActionScheduleSpec` for schedule specs Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for dc1a6c1 - Browse repository at this point
Copy the full SHA dc1a6c1View commit details -
refactor: refactor migration and update version number
- Rename v245.go to v246.go - Add a new migration for action schedule table addition Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4fa2416 - Browse repository at this point
Copy the full SHA 4fa2416View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9129de1 - Browse repository at this point
Copy the full SHA 9129de1View commit details -
refactor: refactor database schema for improved organization
- Rename the `Webhook org_id` column to `owner_id` - Add a new migration for creating an `action schedule` table
Configuration menu - View commit details
-
Copy full SHA for 650434c - Browse repository at this point
Copy the full SHA 650434cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 57b87fc - Browse repository at this point
Copy the full SHA 57b87fcView commit details -
fix: refactor notifier_helper.go for improved readability and maintai…
…nability - Rename `jobs` to `workflows` in `notifier_helper.go` - Fix the `if` statement to properly continue in `notifier_helper.go` - Remove unnecessary `else` block in `notifier_helper.go` Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5a789aa - Browse repository at this point
Copy the full SHA 5a789aaView commit details -
refactor: refactor
ActionSchedule
struct in schedule.go and migrati……on v246 - Remove `EntryIDs` field from `ActionSchedule` struct in `schedule.go` - Remove `EntryIDs` field from migration v246 in `v1_20` folder Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 756c534 - Browse repository at this point
Copy the full SHA 756c534View commit details -
refactor: simplify error handling and rename 'jobs' to 'workflows'
- Rename `jobs` to `workflows` for clarity - Simplify error handling in line 14 - Simplify error handling in line 19 - Remove unnecessary else statement in line 22 Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 257a37f - Browse repository at this point
Copy the full SHA 257a37fView commit details -
chore: refactor license for cron library
- Remove the license for `github.com/robfig/cron/v3` Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for a33777d - Browse repository at this point
Copy the full SHA a33777dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f01a51 - Browse repository at this point
Copy the full SHA 2f01a51View commit details -
refactor: refactor ScheduleTask functions to use passed context
- Update `CreateScheduleTask` to use the passed context instead of `db.DefaultContext` - Update `DeleteScheduleTaskByRepo` to use the passed context instead of `db.DefaultContext` Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for a0dbb87 - Browse repository at this point
Copy the full SHA a0dbb87View commit details -
refactor: remove unnecessary approval function from notifier helper file
- Delete the `ifNeedApproval` function from `notifier_helper.go` Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for bf44849 - Browse repository at this point
Copy the full SHA bf44849View commit details -
chore: add license to go-licenses.json file
- Add a license to the `go-licenses.json` file Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 9ca276b - Browse repository at this point
Copy the full SHA 9ca276bView commit details -
style: ensure consistent line endings across all files
- Remove a line that had no newline at the end of the file Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4eae2df - Browse repository at this point
Copy the full SHA 4eae2dfView commit details -
refactor: improve scheduling efficiency by optimizing import statements
- Add an import statement in `schedule_spec_list.go` Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 0cb21dc - Browse repository at this point
Copy the full SHA 0cb21dcView commit details
Commits on Mar 15, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b63ba87 - Browse repository at this point
Copy the full SHA b63ba87View commit details
Commits on Mar 17, 2023
-
feat: refactor approval handling for workflows
- Change `run` initialization to a pointer - Add function `ifNeedApproval` for deciding if a user needs approval - Modify `handleWorkflows` to use `ifNeedApproval` function - Add `NeedApproval` field to `run` in `handleWorkflows` function Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for b14c06e - Browse repository at this point
Copy the full SHA b14c06eView commit details -
refactor: refactor CreateScheduleTask function
- Fix a typo in the `CreateScheduleTask` function - Remove unnecessary code from the `CreateScheduleTask` function Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5685ea0 - Browse repository at this point
Copy the full SHA 5685ea0View commit details -
refactor: refactor ActionScheduleSpec model struct
- Add `xorm: "index"` tag to `RepoID` and `ScheduleID` fields in `ActionScheduleSpec` - Remove `RepoID` and `ScheduleID` fields from the model struct Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 737d7fe - Browse repository at this point
Copy the full SHA 737d7feView commit details -
feat: refactor schedule task creation process
- Remove the function `CreateScheduleTask` from the `notifier_helper.go` file - Add the function `CreateScheduleTask` to the `schedule_tasks.go` file, which creates a scheduled task from a cron action schedule and a spec string. It creates an action run based on the schedule, inserts it into the database, and creates commit statuses for each job. Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for f069367 - Browse repository at this point
Copy the full SHA f069367View commit details -
refactor: refactor variable assignment in startTasks function
- Change in variable assignment for `specs` in `startTasks` function Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 16513bb - Browse repository at this point
Copy the full SHA 16513bbView commit details -
refactor: refactor workflow handling function signature
- Remove the handleWorkflows function and replace it with a new version that has a different signature and takes more arguments. Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6c14852 - Browse repository at this point
Copy the full SHA 6c14852View commit details -
Update services/cron/tasks_actions.go
Co-authored-by: Jason Song <i@wolfogre.com>
Configuration menu - View commit details
-
Copy full SHA for 099d9a9 - Browse repository at this point
Copy the full SHA 099d9a9View commit details -
perf: refactor scheduling logic for more accurate timing
- Update the `now` variable to truncate to the nearest minute - Change the calculation of `next` to use `now.Add(-1)` instead of `now` - Replace `next.Sub(now) <= 60` with `schedule.Next(now.Add(-1)).Equal(now)` Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 35081d6 - Browse repository at this point
Copy the full SHA 35081d6View commit details -
perf: improve performance and add new function for task starting
- Change the initialization of `crons` to allocate capacity upfront, improving performance. - Remove an unused variable definition. - Add a new function `startTasks` with `opts` parameter. Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1655a8c - Browse repository at this point
Copy the full SHA 1655a8cView commit details
Commits on Mar 18, 2023
-
refactor: simplify and optimize schedule handling function
- Remove debug log for workflow content - Simplify check for empty crons slice - Remove unnecessary if statement - Simplify return statement in handleSchedules function Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for bf8cda4 - Browse repository at this point
Copy the full SHA bf8cda4View commit details -
refactor: refactor schedule task retrieval logic
- Remove `GetAll` field from `FindSpecOptions` struct - Add `FindAllSpecs` function to retrieve all matching schedule specs - Modify `StartScheduleTasks` to use `FindAllSpecs` instead of `FindSpecs` Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 0b714b6 - Browse repository at this point
Copy the full SHA 0b714b6View commit details -
chore: refactor migration file naming convention
- Rename file v246.go to v248.go in models/migrations/v1_20/ directory. Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 039ead5 - Browse repository at this point
Copy the full SHA 039ead5View commit details -
Configuration menu - View commit details
-
Copy full SHA for f12cb3e - Browse repository at this point
Copy the full SHA f12cb3eView commit details -
fix: refactor CreateScheduleTask function to handle empty rows gracef…
…ully - Add a check for `len(rows)` before executing `CreateScheduleTask` function - Remove a redundant check for `len(rows)` in `CreateScheduleTask` function Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7671a31 - Browse repository at this point
Copy the full SHA 7671a31View commit details -
feat: refactor schedule task creation and retrieval process
- Remove the function `FinAllSpecs` from `schedule_spec_list.go` - Change the page size to 50 in `schedule_spec_list.go` - Retrieve specs in pages in `schedule_tasks.go` - Create a schedule task for each spec whose schedule is due - Check for invalid schedules before creating a schedule task Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for fab7c2c - Browse repository at this point
Copy the full SHA fab7c2cView commit details -
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for b815dac - Browse repository at this point
Copy the full SHA b815dacView commit details -
refactor: refactor schedule task registration function
- Remove `registerScheduleTasks` function - Add a new implementation of `registerScheduleTasks` function Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 978739d - Browse repository at this point
Copy the full SHA 978739dView commit details
Commits on Mar 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9efbda8 - Browse repository at this point
Copy the full SHA 9efbda8View commit details -
Configuration menu - View commit details
-
Copy full SHA for beada43 - Browse repository at this point
Copy the full SHA beada43View commit details
Commits on Mar 20, 2023
-
refactor: refactor file naming convention
- File `v248.go` was renamed to `v249.go`. Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 0815696 - Browse repository at this point
Copy the full SHA 0815696View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5eb8947 - Browse repository at this point
Copy the full SHA 5eb8947View commit details -
Configuration menu - View commit details
-
Copy full SHA for a693fe6 - Browse repository at this point
Copy the full SHA a693fe6View commit details
Commits on Mar 25, 2023
-
chore: refactor migration file names in v1_20 directory
- Rename `v249.go` to `v250.go` in `models/migrations/v1_20` Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5d0e0e6 - Browse repository at this point
Copy the full SHA 5d0e0e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for fba8dc4 - Browse repository at this point
Copy the full SHA fba8dc4View commit details
Commits on Mar 26, 2023
-
N/A (no changes in git diff): refactor code for improved performance …
…and readability No summary comments, as there are no changes in the git diff. Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for ce80ce8 - Browse repository at this point
Copy the full SHA ce80ce8View commit details
Commits on Mar 31, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d15448b - Browse repository at this point
Copy the full SHA d15448bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 958e67b - Browse repository at this point
Copy the full SHA 958e67bView commit details -
Configuration menu - View commit details
-
Copy full SHA for ad91c4b - Browse repository at this point
Copy the full SHA ad91c4bView commit details
Commits on Apr 1, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 95320e8 - Browse repository at this point
Copy the full SHA 95320e8View commit details
Commits on Apr 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 513a4bf - Browse repository at this point
Copy the full SHA 513a4bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for e5257ed - Browse repository at this point
Copy the full SHA e5257edView commit details -
Configuration menu - View commit details
-
Copy full SHA for ee2338b - Browse repository at this point
Copy the full SHA ee2338bView commit details -
refactor: simplify schedule event detection
- Remove code that fetched all schedule events and only keep the schedule event detection - Simplify the schedule event detection code Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 83a5fb5 - Browse repository at this point
Copy the full SHA 83a5fb5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4db836d - Browse repository at this point
Copy the full SHA 4db836dView commit details
Commits on Apr 13, 2023
-
Update services/actions/schedule_tasks.go
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 606027f - Browse repository at this point
Copy the full SHA 606027fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 07f1d6a - Browse repository at this point
Copy the full SHA 07f1d6aView commit details
Commits on Apr 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f972c37 - Browse repository at this point
Copy the full SHA f972c37View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e5b5cf - Browse repository at this point
Copy the full SHA 0e5b5cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c7170c - Browse repository at this point
Copy the full SHA 6c7170cView commit details
Commits on Apr 29, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a2fade1 - Browse repository at this point
Copy the full SHA a2fade1View commit details -
Configuration menu - View commit details
-
Copy full SHA for c356411 - Browse repository at this point
Copy the full SHA c356411View commit details -
Configuration menu - View commit details
-
Copy full SHA for 463a65f - Browse repository at this point
Copy the full SHA 463a65fView commit details -
refactor: optimize scheduling and improve API usage
- Remove loop that creates schedule tasks for each cron and spec Signed-off-by: appleboy <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for d958943 - Browse repository at this point
Copy the full SHA d958943View commit details -
chore: add dashboard.start_schedule_tasks language
Signed-off-by: appleboy <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7c8b678 - Browse repository at this point
Copy the full SHA 7c8b678View commit details -
Configuration menu - View commit details
-
Copy full SHA for c7f89f9 - Browse repository at this point
Copy the full SHA c7f89f9View commit details
Commits on Apr 30, 2023
-
feat: improve scheduling and task handling in Gogs API
- Import "time" and "github.com/gogs/cron" packages - Add GetReposMapByIDs function to retrieve repos by given ID slice - Add comments and refactor CreateScheduleTask function - Import "context" and "github.com/gogs/cron" in schedule_spec.go - Add new fields and Parse function to ActionScheduleSpec struct - Add UpdateScheduleSpec function - Update LoadSchedules function in schedule_spec_list.go - Add Next field in FindSpecOptions struct - Update models/migrations/v1_20/v256.go - Refactor startTasks function in schedule_tasks.go Signed-off-by: appleboy <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 67e2da6 - Browse repository at this point
Copy the full SHA 67e2da6View commit details -
feat: improve API efficiency and test coverage
- Add ActionScheduleSpec and ActionSchedule with RepoID in DeleteRepository function Signed-off-by: appleboy <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 06fc431 - Browse repository at this point
Copy the full SHA 06fc431View commit details
Commits on May 6, 2023
-
fix: improve error handling and API efficiency in tests
- Add a missing error return statement in `handleSchedules` function Signed-off-by: appleboy <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for f2c0021 - Browse repository at this point
Copy the full SHA f2c0021View commit details -
refactor: improve action scheduling and API usage
- Remove `index` tag from `WorkflowID` in `ActionSchedule` struct - Add `index` tag to `RepoID` and `ScheduleID` in `AddActionScheduleTable` function Signed-off-by: appleboy <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5c9f14f - Browse repository at this point
Copy the full SHA 5c9f14fView commit details
Commits on May 10, 2023
-
refactor: improve API efficiency and test robustness
- Rename migration file from `v256.go` to `v257.go` Signed-off-by: appleboy <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6c93d4b - Browse repository at this point
Copy the full SHA 6c93d4bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d8f1a8 - Browse repository at this point
Copy the full SHA 9d8f1a8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c243ed - Browse repository at this point
Copy the full SHA 4c243edView commit details
Commits on May 12, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 4150af6 - Browse repository at this point
Copy the full SHA 4150af6View commit details
Commits on May 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 542f681 - Browse repository at this point
Copy the full SHA 542f681View commit details
Commits on May 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b07802e - Browse repository at this point
Copy the full SHA b07802eView commit details -
Configuration menu - View commit details
-
Copy full SHA for d530efd - Browse repository at this point
Copy the full SHA d530efdView commit details
Commits on Jul 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 7ad692f - Browse repository at this point
Copy the full SHA 7ad692fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 58174b5 - Browse repository at this point
Copy the full SHA 58174b5View commit details -
Configuration menu - View commit details
-
Copy full SHA for ab22d4d - Browse repository at this point
Copy the full SHA ab22d4dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 36c58fe - Browse repository at this point
Copy the full SHA 36c58feView commit details
Commits on Aug 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 729bc69 - Browse repository at this point
Copy the full SHA 729bc69View commit details -
Configuration menu - View commit details
-
Copy full SHA for c1be2b5 - Browse repository at this point
Copy the full SHA c1be2b5View commit details -
Configuration menu - View commit details
-
Copy full SHA for e0b65e2 - Browse repository at this point
Copy the full SHA e0b65e2View commit details -
feat: refactor schedule handling in notifier helper
- Add `github.com/gogs/cron` to the `go.mod` file - Remove `GetAll` from `FindScheduleOptions` struct in `schedule_list.go` - Replace `if !opts.GetAll` with `if !opts.ListAll` in `FindSchedules` function in `schedule_list.go` - Remove `handleSchedules` function from `notifier_helper.go` - Modify `notify` function in `notifier_helper.go` to include `schedules` in `DetectWorkflows` function calls - Replace `workflows` with `detectedWorkflows` in `handleWorkflows` function in `notifier_helper.go` - Add `handleSchedules` function in `notifier_helper.go` to handle detected workflows and create schedule tasks - Modify `handleWorkflows` function in `notifier_helper.go` to cancel running jobs if the event is push - Modify `notify` function in `notifier_helper.go` to call `handleWorkflows` with `detectedWorkflows` instead of `workflows` Signed-off-by: appleboy <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 40ed679 - Browse repository at this point
Copy the full SHA 40ed679View commit details -
fix: improve error handling in
startTasks
function- Add error return statements in the `startTasks` function in two places. Signed-off-by: appleboy <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for a12d22d - Browse repository at this point
Copy the full SHA a12d22dView commit details
Commits on Aug 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c4420db - Browse repository at this point
Copy the full SHA c4420dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7890d91 - Browse repository at this point
Copy the full SHA 7890d91View commit details -
Configuration menu - View commit details
-
Copy full SHA for c40bc37 - Browse repository at this point
Copy the full SHA c40bc37View commit details -
Configuration menu - View commit details
-
Copy full SHA for dd27c7f - Browse repository at this point
Copy the full SHA dd27c7fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 82694d7 - Browse repository at this point
Copy the full SHA 82694d7View commit details
Commits on Aug 23, 2023
-
Update services/actions/schedule_tasks.go
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 14d5c46 - Browse repository at this point
Copy the full SHA 14d5c46View commit details -
Configuration menu - View commit details
-
Copy full SHA for 40ce6f7 - Browse repository at this point
Copy the full SHA 40ce6f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 26ce2e9 - Browse repository at this point
Copy the full SHA 26ce2e9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8c24887 - Browse repository at this point
Copy the full SHA 8c24887View commit details -
Configuration menu - View commit details
-
Copy full SHA for 99210fc - Browse repository at this point
Copy the full SHA 99210fcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 83ec4c6 - Browse repository at this point
Copy the full SHA 83ec4c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8152ab7 - Browse repository at this point
Copy the full SHA 8152ab7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3e95eb6 - Browse repository at this point
Copy the full SHA 3e95eb6View commit details -
Configuration menu - View commit details
-
Copy full SHA for da6ae91 - Browse repository at this point
Copy the full SHA da6ae91View commit details -
Configuration menu - View commit details
-
Copy full SHA for ed4bf1c - Browse repository at this point
Copy the full SHA ed4bf1cView commit details
Commits on Aug 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 860e2a7 - Browse repository at this point
Copy the full SHA 860e2a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7e3e206 - Browse repository at this point
Copy the full SHA 7e3e206View commit details -
Configuration menu - View commit details
-
Copy full SHA for 23730be - Browse repository at this point
Copy the full SHA 23730beView commit details