diff options
author | HesterG <hestergong@gmail.com> | 2023-06-21 12:25:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-21 04:25:14 +0000 |
commit | 1454f9dafc681875d8f6a429b80e27de62f4040e (patch) | |
tree | a450eb8e78cb5f7add2d2aee48b2841874b63647 /options | |
parent | e79ff5056043f25a77c50847a228826bc7cdaf61 (diff) | |
download | gitea-1454f9dafc681875d8f6a429b80e27de62f4040e.tar.gz gitea-1454f9dafc681875d8f6a429b80e27de62f4040e.zip |
Add actor and status dropdowns to run list (#25118)
Part of #25042
1. Added actor and status dropdowns first in case something is offtrack
and PR is too large.
2. Also added "No results matched." and "The workflow has no runs yet.",
and "No results matched." will show if there is no filter results and
there is no workflows (with [reference to github
action](https://github.com/go-gitea/gitea/actions/workflows/files-changed.yml?query=actor%3AGiteaBot))
Demo:
https://github.com/go-gitea/gitea/assets/17645053/6e76292c-4c1f-450d-8b48-99944cfc920c
TODOs:
- [x] Get available status (same as those in `aggregateJobStatus`)
instead of getting from database
- [x] Use `JOIN` to get actors, actors order by name
- [x] Make self on top
Diffstat (limited to 'options')
-rw-r--r-- | options/locale/locale_en-US.ini | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index 0cf8810702..234b898fc1 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -3460,6 +3460,12 @@ runs.commit = Commit runs.pushed_by = Pushed by runs.invalid_workflow_helper = Workflow config file is invalid. Please check your config file: %s runs.no_matching_runner_helper = No matching runner: %s +runs.actor = Actor +runs.status = Status +runs.actors_no_select = All actors +runs.status_no_select = All status +runs.no_results = No results matched. +runs.no_runs = The workflow has no runs yet. need_approval_desc = Need approval to run workflows for fork pull request. |