2016-02-14 16:26:47 -07:00
|
|
|
<div class="header-wrapper">
|
2014-10-18 23:35:24 -06:00
|
|
|
{{with .Repository}}
|
2017-12-30 17:47:52 -07:00
|
|
|
<div class="ui container">
|
2019-02-05 14:59:26 -07:00
|
|
|
<div class="repo-header">
|
2024-01-11 20:44:06 -07:00
|
|
|
<div class="flex-item gt-ac">
|
|
|
|
<div class="flex-item-leading">{{template "repo/icon" .}}</div>
|
|
|
|
<div class="flex-item-main">
|
|
|
|
<div class="flex-item-title">
|
|
|
|
<a class="text light thin" href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a>/
|
|
|
|
<a class="text primary" href="{{$.RepoLink}}">{{.Name}}</a></div>
|
|
|
|
</div>
|
|
|
|
<div class="flex-item-trailing">
|
|
|
|
{{if .IsArchived}}
|
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.archived"}}</span>
|
|
|
|
<div class="repo-icon" data-tooltip-content="{{ctx.Locale.Tr "repo.desc.archived"}}">{{svg "octicon-archive" 18}}</div>
|
|
|
|
{{end}}
|
|
|
|
{{if .IsPrivate}}
|
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.private"}}</span>
|
|
|
|
<div class="repo-icon" data-tooltip-content="{{ctx.Locale.Tr "repo.desc.private"}}">{{svg "octicon-lock" 18}}</div>
|
|
|
|
{{else}}
|
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.internal"}}</span>
|
|
|
|
<div class="repo-icon" data-tooltip-content="{{ctx.Locale.Tr "repo.desc.internal"}}">{{svg "octicon-shield-lock" 18}}</div>
|
2020-12-07 21:14:28 -07:00
|
|
|
{{end}}
|
2024-01-11 20:44:06 -07:00
|
|
|
{{end}}
|
|
|
|
{{if .IsTemplate}}
|
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.template"}}</span>
|
|
|
|
<div class="repo-icon" data-tooltip-content="{{ctx.Locale.Tr "repo.desc.template"}}">{{svg "octicon-repo-template" 18}}</div>
|
|
|
|
{{end}}
|
2020-12-07 21:14:28 -07:00
|
|
|
</div>
|
2017-12-30 17:47:52 -07:00
|
|
|
</div>
|
2021-11-22 15:32:16 -07:00
|
|
|
{{if not (or .IsBeingCreated .IsBroken)}}
|
2019-10-13 07:23:14 -06:00
|
|
|
<div class="repo-buttons">
|
2021-02-28 17:47:30 -07:00
|
|
|
{{if $.RepoTransfer}}
|
|
|
|
<form method="post" action="{{$.RepoLink}}/action/accept_transfer?redirect_to={{$.RepoLink}}">
|
|
|
|
{{$.CsrfTokenHtml}}
|
2023-09-25 02:56:50 -06:00
|
|
|
<div data-tooltip-content="{{if $.CanUserAcceptTransfer}}{{ctx.Locale.Tr "repo.transfer.accept_desc" $.RepoTransfer.Recipient.DisplayName}}{{else}}{{ctx.Locale.Tr "repo.transfer.no_permission_to_accept"}}{{end}}">
|
2023-09-18 16:05:31 -06:00
|
|
|
<button type="submit" class="ui basic button {{if $.CanUserAcceptTransfer}}primary {{end}} ok small"{{if not $.CanUserAcceptTransfer}} disabled{{end}}>
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.transfer.accept"}}
|
2021-02-28 17:47:30 -07:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<form method="post" action="{{$.RepoLink}}/action/reject_transfer?redirect_to={{$.RepoLink}}">
|
|
|
|
{{$.CsrfTokenHtml}}
|
2023-09-25 02:56:50 -06:00
|
|
|
<div data-tooltip-content="{{if $.CanUserAcceptTransfer}}{{ctx.Locale.Tr "repo.transfer.reject_desc" $.RepoTransfer.Recipient.DisplayName}}{{else}}{{ctx.Locale.Tr "repo.transfer.no_permission_to_reject"}}{{end}}">
|
2023-05-04 07:21:30 -06:00
|
|
|
<button type="submit" class="ui basic button {{if $.CanUserAcceptTransfer}}red {{end}}ok small"{{if not $.CanUserAcceptTransfer}} disabled{{end}}>
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.transfer.reject"}}
|
2021-02-28 17:47:30 -07:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{{end}}
|
2023-12-06 13:29:26 -07:00
|
|
|
{{if $.EnableFeed}}
|
|
|
|
{{/* An extra div-element is not necessary here, as this button does not secretly contain two buttons. */}}
|
2023-12-06 20:01:32 -07:00
|
|
|
<a class="ui compact small basic button" href="{{$.RepoLink}}.rss" data-tooltip-content="{{ctx.Locale.Tr "rss_feed"}}">
|
2023-12-06 13:29:26 -07:00
|
|
|
{{svg "octicon-rss" 16}}
|
2023-12-06 20:01:32 -07:00
|
|
|
</a>
|
2023-12-06 13:29:26 -07:00
|
|
|
{{end}}
|
2020-02-25 13:28:47 -07:00
|
|
|
<form method="post" action="{{$.RepoLink}}/action/{{if $.IsWatchingRepo}}un{{end}}watch?redirect_to={{$.Link}}">
|
|
|
|
{{$.CsrfTokenHtml}}
|
2023-09-25 02:56:50 -06:00
|
|
|
<div class="ui labeled button" {{if not $.IsSigned}}data-tooltip-content="{{ctx.Locale.Tr "repo.watch_guest_user"}}"{{end}}>
|
2020-12-27 03:53:53 -07:00
|
|
|
<button type="submit" class="ui compact small basic button"{{if not $.IsSigned}} disabled{{end}}>
|
2024-01-11 20:44:06 -07:00
|
|
|
{{if $.IsWatchingRepo}}
|
|
|
|
{{svg "octicon-eye-closed" 16}}<span class="text">{{ctx.Locale.Tr "repo.unwatch"}}</span>
|
|
|
|
{{else}}
|
|
|
|
{{svg "octicon-eye"}}<span class="text">{{ctx.Locale.Tr "repo.watch"}}</span>
|
|
|
|
{{end}}
|
2020-02-25 13:28:47 -07:00
|
|
|
</button>
|
|
|
|
<a class="ui basic label" href="{{.Link}}/watchers">
|
2020-09-15 22:07:18 -06:00
|
|
|
{{CountFmt .NumWatches}}
|
2020-02-25 13:28:47 -07:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</form>
|
2021-04-15 10:53:57 -06:00
|
|
|
{{if not $.DisableStars}}
|
|
|
|
<form method="post" action="{{$.RepoLink}}/action/{{if $.IsStaringRepo}}un{{end}}star?redirect_to={{$.Link}}">
|
|
|
|
{{$.CsrfTokenHtml}}
|
2023-09-25 02:56:50 -06:00
|
|
|
<div class="ui labeled button" {{if not $.IsSigned}}data-tooltip-content="{{ctx.Locale.Tr "repo.star_guest_user"}}"{{end}}>
|
2021-04-15 10:53:57 -06:00
|
|
|
<button type="submit" class="ui compact small basic button"{{if not $.IsSigned}} disabled{{end}}>
|
2024-01-11 20:44:06 -07:00
|
|
|
{{if $.IsStaringRepo}}
|
|
|
|
{{svg "octicon-star-fill"}}<span class="text">{{ctx.Locale.Tr "repo.unstar"}}</span>
|
|
|
|
{{else}}
|
|
|
|
{{svg "octicon-star"}}<span class="text">{{ctx.Locale.Tr "repo.star"}}</span>
|
|
|
|
{{end}}
|
2021-04-15 10:53:57 -06:00
|
|
|
</button>
|
|
|
|
<a class="ui basic label" href="{{.Link}}/stars">
|
|
|
|
{{CountFmt .NumStars}}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{{end}}
|
2019-10-13 07:23:14 -06:00
|
|
|
{{if and (not .IsEmpty) ($.Permission.CanRead $.UnitTypeCode)}}
|
2021-12-12 18:59:09 -07:00
|
|
|
<div class="ui labeled button
|
2023-12-04 14:48:42 -07:00
|
|
|
{{if or (not $.IsSigned) (and (not $.CanSignedUserFork) (not $.UserAndOrgForks))}}
|
2023-03-24 04:35:38 -06:00
|
|
|
disabled
|
2021-12-12 18:59:09 -07:00
|
|
|
{{end}}"
|
|
|
|
{{if not $.IsSigned}}
|
2023-09-25 02:56:50 -06:00
|
|
|
data-tooltip-content="{{ctx.Locale.Tr "repo.fork_guest_user"}}"
|
2023-12-04 14:48:42 -07:00
|
|
|
{{else if and (not $.CanSignedUserFork) (not $.UserAndOrgForks)}}
|
2023-09-25 02:56:50 -06:00
|
|
|
data-tooltip-content="{{ctx.Locale.Tr "repo.fork_from_self"}}"
|
2021-12-12 18:59:09 -07:00
|
|
|
{{end}}
|
2023-03-24 04:35:38 -06:00
|
|
|
>
|
2021-12-12 18:59:09 -07:00
|
|
|
<a class="ui compact{{if $.ShowForkModal}} show-modal{{end}} small basic button"
|
|
|
|
{{if not $.CanSignedUserFork}}
|
|
|
|
{{if gt (len $.UserAndOrgForks) 1}}
|
|
|
|
data-modal="#fork-repo-modal"
|
|
|
|
{{else if eq (len $.UserAndOrgForks) 1}}
|
|
|
|
href="{{AppSubUrl}}/{{(index $.UserAndOrgForks 0).FullName}}"
|
|
|
|
{{/*else is not required here, because the button shouldn't link to any site if you can't create a fork*/}}
|
|
|
|
{{end}}
|
2023-12-04 14:48:42 -07:00
|
|
|
{{else if not $.UserAndOrgForks}}
|
2021-12-12 18:59:09 -07:00
|
|
|
href="{{AppSubUrl}}/repo/fork/{{.ID}}"
|
|
|
|
{{else}}
|
|
|
|
data-modal="#fork-repo-modal"
|
|
|
|
{{end}}
|
|
|
|
>
|
2024-01-11 20:44:06 -07:00
|
|
|
{{svg "octicon-repo-forked"}}<span class="text">{{ctx.Locale.Tr "repo.fork"}}</span>
|
2019-10-13 07:23:14 -06:00
|
|
|
</a>
|
2021-12-12 18:59:09 -07:00
|
|
|
<div class="ui small modal" id="fork-repo-modal">
|
|
|
|
<div class="header">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.already_forked" .Name}}
|
2021-12-12 18:59:09 -07:00
|
|
|
</div>
|
2023-07-08 03:53:56 -06:00
|
|
|
<div class="content gt-text-left">
|
2021-12-12 18:59:09 -07:00
|
|
|
<div class="ui list">
|
|
|
|
{{range $.UserAndOrgForks}}
|
2023-02-13 10:59:59 -07:00
|
|
|
<div class="ui item gt-py-3">
|
2024-01-11 20:44:06 -07:00
|
|
|
<a href="{{.Link}}">{{svg "octicon-repo-forked" 16 "gt-mr-3"}}{{.FullName}}</a>
|
2021-12-12 18:59:09 -07:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{if $.CanSignedUserFork}}
|
2023-06-29 06:24:22 -06:00
|
|
|
<div class="divider"></div>
|
2024-01-11 20:44:06 -07:00
|
|
|
<a href="{{AppSubUrl}}/repo/fork/{{.ID}}">{{ctx.Locale.Tr "repo.fork_to_different_account"}}</a>
|
2021-12-12 18:59:09 -07:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-13 07:23:14 -06:00
|
|
|
<a class="ui basic label" href="{{.Link}}/forks">
|
2020-09-15 22:07:18 -06:00
|
|
|
{{CountFmt .NumForks}}
|
2019-10-13 07:23:14 -06:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2024-01-11 20:44:06 -07:00
|
|
|
</div>
|
2024-01-18 03:27:07 -07:00
|
|
|
{{if $.PullMirror}}
|
|
|
|
<div class="fork-flag">
|
|
|
|
{{ctx.Locale.Tr "repo.mirror_from"}}
|
|
|
|
<a target="_blank" rel="noopener noreferrer" href="{{$.PullMirror.RemoteAddress}}">{{$.PullMirror.RemoteAddress}}</a>
|
|
|
|
{{if $.PullMirror.UpdatedUnix}}{{ctx.Locale.Tr "repo.mirror_sync"}} {{TimeSinceUnix $.PullMirror.UpdatedUnix ctx.Locale}}{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2024-01-11 20:44:06 -07:00
|
|
|
{{if .IsFork}}<div class="fork-flag">{{ctx.Locale.Tr "repo.forked_from"}} <a href="{{.BaseRepo.Link}}">{{.BaseRepo.FullName}}</a></div>{{end}}
|
|
|
|
{{if .IsGenerated}}<div class="fork-flag">{{ctx.Locale.Tr "repo.generated_from"}} <a href="{{(.TemplateRepo ctx).Link}}">{{(.TemplateRepo ctx).FullName}}</a></div>{{end}}
|
|
|
|
</div>
|
2015-08-12 04:12:06 -06:00
|
|
|
{{end}}
|
2024-01-11 20:44:06 -07:00
|
|
|
<div class="ui container secondary pointing tabular top attached borderless menu new-menu navbar">
|
2021-11-22 15:32:16 -07:00
|
|
|
{{if not (or .Repository.IsBeingCreated .Repository.IsBroken)}}
|
2024-01-11 20:44:06 -07:00
|
|
|
<div class="new-menu-inner">
|
2019-10-13 07:23:14 -06:00
|
|
|
{{if .Permission.CanRead $.UnitTypeCode}}
|
2023-11-26 22:59:56 -07:00
|
|
|
<a class="{{if .PageIsViewCode}}active {{end}}item" href="{{.RepoLink}}{{if and (ne .BranchName .Repository.DefaultBranch) (not $.PageIsWiki)}}/src/{{.BranchNameSubURL}}{{end}}">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-code"}} {{ctx.Locale.Tr "repo.code"}}
|
2017-02-04 08:53:46 -07:00
|
|
|
</a>
|
2019-10-13 07:23:14 -06:00
|
|
|
{{end}}
|
2017-03-18 04:59:07 -06:00
|
|
|
|
2019-10-13 07:23:14 -06:00
|
|
|
{{if .Permission.CanRead $.UnitTypeIssues}}
|
2022-12-09 06:34:51 -07:00
|
|
|
<a class="{{if .PageIsIssueList}}active {{end}}item" href="{{.RepoLink}}/issues">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-issue-opened"}} {{ctx.Locale.Tr "repo.issues"}}
|
2020-10-24 05:54:33 -06:00
|
|
|
{{if .Repository.NumOpenIssues}}
|
2023-02-03 15:25:55 -07:00
|
|
|
<span class="ui small label">{{CountFmt .Repository.NumOpenIssues}}</span>
|
2020-10-24 05:54:33 -06:00
|
|
|
{{end}}
|
2019-10-13 07:23:14 -06:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2017-02-04 08:53:46 -07:00
|
|
|
|
2019-10-13 07:23:14 -06:00
|
|
|
{{if .Permission.CanRead $.UnitTypeExternalTracker}}
|
2022-12-09 06:34:51 -07:00
|
|
|
<a class="{{if .PageIsIssueList}}active {{end}}item" href="{{.RepoExternalIssuesLink}}" target="_blank" rel="noopener noreferrer">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-link-external"}} {{ctx.Locale.Tr "repo.issues"}}
|
2019-10-13 07:23:14 -06:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2017-02-04 08:53:46 -07:00
|
|
|
|
2019-10-13 07:23:14 -06:00
|
|
|
{{if and .Repository.CanEnablePulls (.Permission.CanRead $.UnitTypePullRequests)}}
|
2022-12-09 06:34:51 -07:00
|
|
|
<a class="{{if .PageIsPullList}}active {{end}}item" href="{{.RepoLink}}/pulls">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-git-pull-request"}} {{ctx.Locale.Tr "repo.pulls"}}
|
2020-10-24 05:54:33 -06:00
|
|
|
{{if .Repository.NumOpenPulls}}
|
2023-02-03 15:25:55 -07:00
|
|
|
<span class="ui small label">{{CountFmt .Repository.NumOpenPulls}}</span>
|
2020-10-24 05:54:33 -06:00
|
|
|
{{end}}
|
2019-10-13 07:23:14 -06:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2017-02-04 08:53:46 -07:00
|
|
|
|
Implement actions (#21937)
Close #13539.
Co-authored by: @lunny @appleboy @fuxiaohei and others.
Related projects:
- https://gitea.com/gitea/actions-proto-def
- https://gitea.com/gitea/actions-proto-go
- https://gitea.com/gitea/act
- https://gitea.com/gitea/act_runner
### Summary
The target of this PR is to bring a basic implementation of "Actions",
an internal CI/CD system of Gitea. That means even though it has been
merged, the state of the feature is **EXPERIMENTAL**, and please note
that:
- It is disabled by default;
- It shouldn't be used in a production environment currently;
- It shouldn't be used in a public Gitea instance currently;
- Breaking changes may be made before it's stable.
**Please comment on #13539 if you have any different product design
ideas**, all decisions reached there will be adopted here. But in this
PR, we don't talk about **naming, feature-creep or alternatives**.
### ⚠️ Breaking
`gitea-actions` will become a reserved user name. If a user with the
name already exists in the database, it is recommended to rename it.
### Some important reviews
- What is `DEFAULT_ACTIONS_URL` in `app.ini` for?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1055954954
- Why the api for runners is not under the normal `/api/v1` prefix?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1061173592
- Why DBFS?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1061301178
- Why ignore events triggered by `gitea-actions` bot?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1063254103
- Why there's no permission control for actions?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1090229868
### What it looks like
<details>
#### Manage runners
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205870657-c72f590e-2e08-4cd4-be7f-2e0abb299bbf.png">
#### List runs
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205872794-50fde990-2b45-48c1-a178-908e4ec5b627.png">
#### View logs
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205872501-9b7b9000-9542-4991-8f55-18ccdada77c3.png">
</details>
### How to try it
<details>
#### 1. Start Gitea
Clone this branch and [install from
source](https://docs.gitea.io/en-us/install-from-source).
Add additional configurations in `app.ini` to enable Actions:
```ini
[actions]
ENABLED = true
```
Start it.
If all is well, you'll see the management page of runners:
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205877365-8e30a780-9b10-4154-b3e8-ee6c3cb35a59.png">
#### 2. Start runner
Clone the [act_runner](https://gitea.com/gitea/act_runner), and follow
the
[README](https://gitea.com/gitea/act_runner/src/branch/main/README.md)
to start it.
If all is well, you'll see a new runner has been added:
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205878000-216f5937-e696-470d-b66c-8473987d91c3.png">
#### 3. Enable actions for a repo
Create a new repo or open an existing one, check the `Actions` checkbox
in settings and submit.
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205879705-53e09208-73c0-4b3e-a123-2dcf9aba4b9c.png">
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205879383-23f3d08f-1a85-41dd-a8b3-54e2ee6453e8.png">
If all is well, you'll see a new tab "Actions":
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205881648-a8072d8c-5803-4d76-b8a8-9b2fb49516c1.png">
#### 4. Upload workflow files
Upload some workflow files to `.gitea/workflows/xxx.yaml`, you can
follow the [quickstart](https://docs.github.com/en/actions/quickstart)
of GitHub Actions. Yes, Gitea Actions is compatible with GitHub Actions
in most cases, you can use the same demo:
```yaml
name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."
```
If all is well, you'll see a new run in `Actions` tab:
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205884473-79a874bc-171b-4aaf-acd5-0241a45c3b53.png">
#### 5. Check the logs of jobs
Click a run and you'll see the logs:
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205884800-994b0374-67f7-48ff-be9a-4c53f3141547.png">
#### 6. Go on
You can try more examples in [the
documents](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions)
of GitHub Actions, then you might find a lot of bugs.
Come on, PRs are welcome.
</details>
See also: [Feature Preview: Gitea
Actions](https://blog.gitea.io/2022/12/feature-preview-gitea-actions/)
---------
Co-authored-by: a1012112796 <1012112796@qq.com>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: delvh <dev.lh@web.de>
Co-authored-by: ChristopherHX <christopher.homberger@web.de>
Co-authored-by: John Olheiser <john.olheiser@gmail.com>
2023-01-30 18:45:19 -07:00
|
|
|
{{if and .EnableActions (not .UnitActionsGlobalDisabled) (.Permission.CanRead $.UnitTypeActions)}}
|
|
|
|
<a class="{{if .PageIsActions}}active {{end}}item" href="{{.RepoLink}}/actions">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-play"}} {{ctx.Locale.Tr "actions.actions"}}
|
Implement actions (#21937)
Close #13539.
Co-authored by: @lunny @appleboy @fuxiaohei and others.
Related projects:
- https://gitea.com/gitea/actions-proto-def
- https://gitea.com/gitea/actions-proto-go
- https://gitea.com/gitea/act
- https://gitea.com/gitea/act_runner
### Summary
The target of this PR is to bring a basic implementation of "Actions",
an internal CI/CD system of Gitea. That means even though it has been
merged, the state of the feature is **EXPERIMENTAL**, and please note
that:
- It is disabled by default;
- It shouldn't be used in a production environment currently;
- It shouldn't be used in a public Gitea instance currently;
- Breaking changes may be made before it's stable.
**Please comment on #13539 if you have any different product design
ideas**, all decisions reached there will be adopted here. But in this
PR, we don't talk about **naming, feature-creep or alternatives**.
### ⚠️ Breaking
`gitea-actions` will become a reserved user name. If a user with the
name already exists in the database, it is recommended to rename it.
### Some important reviews
- What is `DEFAULT_ACTIONS_URL` in `app.ini` for?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1055954954
- Why the api for runners is not under the normal `/api/v1` prefix?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1061173592
- Why DBFS?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1061301178
- Why ignore events triggered by `gitea-actions` bot?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1063254103
- Why there's no permission control for actions?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1090229868
### What it looks like
<details>
#### Manage runners
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205870657-c72f590e-2e08-4cd4-be7f-2e0abb299bbf.png">
#### List runs
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205872794-50fde990-2b45-48c1-a178-908e4ec5b627.png">
#### View logs
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205872501-9b7b9000-9542-4991-8f55-18ccdada77c3.png">
</details>
### How to try it
<details>
#### 1. Start Gitea
Clone this branch and [install from
source](https://docs.gitea.io/en-us/install-from-source).
Add additional configurations in `app.ini` to enable Actions:
```ini
[actions]
ENABLED = true
```
Start it.
If all is well, you'll see the management page of runners:
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205877365-8e30a780-9b10-4154-b3e8-ee6c3cb35a59.png">
#### 2. Start runner
Clone the [act_runner](https://gitea.com/gitea/act_runner), and follow
the
[README](https://gitea.com/gitea/act_runner/src/branch/main/README.md)
to start it.
If all is well, you'll see a new runner has been added:
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205878000-216f5937-e696-470d-b66c-8473987d91c3.png">
#### 3. Enable actions for a repo
Create a new repo or open an existing one, check the `Actions` checkbox
in settings and submit.
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205879705-53e09208-73c0-4b3e-a123-2dcf9aba4b9c.png">
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205879383-23f3d08f-1a85-41dd-a8b3-54e2ee6453e8.png">
If all is well, you'll see a new tab "Actions":
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205881648-a8072d8c-5803-4d76-b8a8-9b2fb49516c1.png">
#### 4. Upload workflow files
Upload some workflow files to `.gitea/workflows/xxx.yaml`, you can
follow the [quickstart](https://docs.github.com/en/actions/quickstart)
of GitHub Actions. Yes, Gitea Actions is compatible with GitHub Actions
in most cases, you can use the same demo:
```yaml
name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."
```
If all is well, you'll see a new run in `Actions` tab:
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205884473-79a874bc-171b-4aaf-acd5-0241a45c3b53.png">
#### 5. Check the logs of jobs
Click a run and you'll see the logs:
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205884800-994b0374-67f7-48ff-be9a-4c53f3141547.png">
#### 6. Go on
You can try more examples in [the
documents](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions)
of GitHub Actions, then you might find a lot of bugs.
Come on, PRs are welcome.
</details>
See also: [Feature Preview: Gitea
Actions](https://blog.gitea.io/2022/12/feature-preview-gitea-actions/)
---------
Co-authored-by: a1012112796 <1012112796@qq.com>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: delvh <dev.lh@web.de>
Co-authored-by: ChristopherHX <christopher.homberger@web.de>
Co-authored-by: John Olheiser <john.olheiser@gmail.com>
2023-01-30 18:45:19 -07:00
|
|
|
{{if .Repository.NumOpenActionRuns}}
|
2023-02-03 15:25:55 -07:00
|
|
|
<span class="ui small label">{{CountFmt .Repository.NumOpenActionRuns}}</span>
|
Implement actions (#21937)
Close #13539.
Co-authored by: @lunny @appleboy @fuxiaohei and others.
Related projects:
- https://gitea.com/gitea/actions-proto-def
- https://gitea.com/gitea/actions-proto-go
- https://gitea.com/gitea/act
- https://gitea.com/gitea/act_runner
### Summary
The target of this PR is to bring a basic implementation of "Actions",
an internal CI/CD system of Gitea. That means even though it has been
merged, the state of the feature is **EXPERIMENTAL**, and please note
that:
- It is disabled by default;
- It shouldn't be used in a production environment currently;
- It shouldn't be used in a public Gitea instance currently;
- Breaking changes may be made before it's stable.
**Please comment on #13539 if you have any different product design
ideas**, all decisions reached there will be adopted here. But in this
PR, we don't talk about **naming, feature-creep or alternatives**.
### ⚠️ Breaking
`gitea-actions` will become a reserved user name. If a user with the
name already exists in the database, it is recommended to rename it.
### Some important reviews
- What is `DEFAULT_ACTIONS_URL` in `app.ini` for?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1055954954
- Why the api for runners is not under the normal `/api/v1` prefix?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1061173592
- Why DBFS?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1061301178
- Why ignore events triggered by `gitea-actions` bot?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1063254103
- Why there's no permission control for actions?
- https://github.com/go-gitea/gitea/pull/21937#discussion_r1090229868
### What it looks like
<details>
#### Manage runners
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205870657-c72f590e-2e08-4cd4-be7f-2e0abb299bbf.png">
#### List runs
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205872794-50fde990-2b45-48c1-a178-908e4ec5b627.png">
#### View logs
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205872501-9b7b9000-9542-4991-8f55-18ccdada77c3.png">
</details>
### How to try it
<details>
#### 1. Start Gitea
Clone this branch and [install from
source](https://docs.gitea.io/en-us/install-from-source).
Add additional configurations in `app.ini` to enable Actions:
```ini
[actions]
ENABLED = true
```
Start it.
If all is well, you'll see the management page of runners:
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205877365-8e30a780-9b10-4154-b3e8-ee6c3cb35a59.png">
#### 2. Start runner
Clone the [act_runner](https://gitea.com/gitea/act_runner), and follow
the
[README](https://gitea.com/gitea/act_runner/src/branch/main/README.md)
to start it.
If all is well, you'll see a new runner has been added:
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205878000-216f5937-e696-470d-b66c-8473987d91c3.png">
#### 3. Enable actions for a repo
Create a new repo or open an existing one, check the `Actions` checkbox
in settings and submit.
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205879705-53e09208-73c0-4b3e-a123-2dcf9aba4b9c.png">
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205879383-23f3d08f-1a85-41dd-a8b3-54e2ee6453e8.png">
If all is well, you'll see a new tab "Actions":
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205881648-a8072d8c-5803-4d76-b8a8-9b2fb49516c1.png">
#### 4. Upload workflow files
Upload some workflow files to `.gitea/workflows/xxx.yaml`, you can
follow the [quickstart](https://docs.github.com/en/actions/quickstart)
of GitHub Actions. Yes, Gitea Actions is compatible with GitHub Actions
in most cases, you can use the same demo:
```yaml
name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."
```
If all is well, you'll see a new run in `Actions` tab:
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205884473-79a874bc-171b-4aaf-acd5-0241a45c3b53.png">
#### 5. Check the logs of jobs
Click a run and you'll see the logs:
<img width="1792" alt="image"
src="https://user-images.githubusercontent.com/9418365/205884800-994b0374-67f7-48ff-be9a-4c53f3141547.png">
#### 6. Go on
You can try more examples in [the
documents](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions)
of GitHub Actions, then you might find a lot of bugs.
Come on, PRs are welcome.
</details>
See also: [Feature Preview: Gitea
Actions](https://blog.gitea.io/2022/12/feature-preview-gitea-actions/)
---------
Co-authored-by: a1012112796 <1012112796@qq.com>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: delvh <dev.lh@web.de>
Co-authored-by: ChristopherHX <christopher.homberger@web.de>
Co-authored-by: John Olheiser <john.olheiser@gmail.com>
2023-01-30 18:45:19 -07:00
|
|
|
{{end}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
|
2022-05-08 09:51:50 -06:00
|
|
|
{{if .Permission.CanRead $.UnitTypePackages}}
|
2022-12-09 06:34:51 -07:00
|
|
|
<a href="{{.RepoLink}}/packages" class="{{if .IsPackagesPage}}active {{end}}item">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-package"}} {{ctx.Locale.Tr "packages.title"}}
|
2022-05-08 09:51:50 -06:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2022-03-30 02:42:47 -06:00
|
|
|
|
2022-08-25 15:55:52 -06:00
|
|
|
{{if and (not .UnitProjectsGlobalDisabled) (.Permission.CanRead $.UnitTypeProjects)}}
|
2022-12-09 06:34:51 -07:00
|
|
|
<a href="{{.RepoLink}}/projects" class="{{if .IsProjectsPage}}active {{end}}item">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-project"}} {{ctx.Locale.Tr "repo.project_board"}}
|
2020-10-24 05:54:33 -06:00
|
|
|
{{if .Repository.NumOpenProjects}}
|
2023-02-03 15:25:55 -07:00
|
|
|
<span class="ui small label">{{CountFmt .Repository.NumOpenProjects}}</span>
|
2020-10-24 05:54:33 -06:00
|
|
|
{{end}}
|
2020-08-16 21:07:38 -06:00
|
|
|
</a>
|
2022-08-25 15:55:52 -06:00
|
|
|
{{end}}
|
2020-08-16 21:07:38 -06:00
|
|
|
|
2022-08-25 15:55:52 -06:00
|
|
|
{{if and (.Permission.CanRead $.UnitTypeReleases) (not .IsEmptyRepo)}}
|
2023-07-04 22:11:42 -06:00
|
|
|
<a class="{{if or .PageIsReleaseList .PageIsTagList}}active {{end}}item" href="{{.RepoLink}}/releases">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-tag"}} {{ctx.Locale.Tr "repo.releases"}}
|
2020-10-24 05:54:33 -06:00
|
|
|
{{if .NumReleases}}
|
2023-02-03 15:25:55 -07:00
|
|
|
<span class="ui small label">{{CountFmt .NumReleases}}</span>
|
2020-10-24 05:54:33 -06:00
|
|
|
{{end}}
|
2017-10-14 17:17:39 -06:00
|
|
|
</a>
|
2019-10-13 07:23:14 -06:00
|
|
|
{{end}}
|
2017-10-14 17:17:39 -06:00
|
|
|
|
2023-04-24 10:28:37 -06:00
|
|
|
{{if .Permission.CanRead $.UnitTypeWiki}}
|
|
|
|
<a class="{{if .PageIsWiki}}active {{end}}item" href="{{.RepoLink}}/wiki">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-book"}} {{ctx.Locale.Tr "repo.wiki"}}
|
2019-10-13 07:23:14 -06:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2018-01-09 23:19:50 -07:00
|
|
|
|
2023-04-24 10:28:37 -06:00
|
|
|
{{if .Permission.CanRead $.UnitTypeExternalWiki}}
|
|
|
|
<a class="item" href="{{(.Repository.MustGetUnit $.Context $.UnitTypeExternalWiki).ExternalWikiConfig.ExternalWikiURL}}" target="_blank" rel="noopener noreferrer">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-link-external"}} {{ctx.Locale.Tr "repo.wiki"}}
|
2023-04-24 10:28:37 -06:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
|
2019-10-13 07:23:14 -06:00
|
|
|
{{if and (.Permission.CanReadAny $.UnitTypePullRequests $.UnitTypeIssues $.UnitTypeReleases) (not .IsEmptyRepo)}}
|
2022-12-09 06:34:51 -07:00
|
|
|
<a class="{{if .PageIsActivity}}active {{end}}item" href="{{.RepoLink}}/activity">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-pulse"}} {{ctx.Locale.Tr "repo.activity"}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</a>
|
2019-10-13 07:23:14 -06:00
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{template "custom/extra_tabs" .}}
|
|
|
|
|
|
|
|
{{if .Permission.IsAdmin}}
|
2024-01-11 20:44:06 -07:00
|
|
|
<a class="{{if .PageIsRepoSettings}}active {{end}} item" href="{{.RepoLink}}/settings">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-tools"}} {{ctx.Locale.Tr "repo.settings"}}
|
2023-04-29 05:35:59 -06:00
|
|
|
</a>
|
2019-10-13 07:23:14 -06:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2021-11-22 15:32:16 -07:00
|
|
|
{{else if .Permission.IsAdmin}}
|
2024-01-11 20:44:06 -07:00
|
|
|
<div class="new-menu-inner">
|
|
|
|
<a class="{{if .PageIsRepoSettings}}active {{end}} item" href="{{.RepoLink}}/settings">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{svg "octicon-tools"}} {{ctx.Locale.Tr "repo.settings"}}
|
2023-04-29 05:35:59 -06:00
|
|
|
</a>
|
2021-11-22 15:32:16 -07:00
|
|
|
</div>
|
2019-10-13 07:23:14 -06:00
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
|
|
|
<div class="ui tabs divider"></div>
|
2016-03-04 12:50:34 -07:00
|
|
|
</div>
|