2016-02-15 02:26:47 +03:00
<div class="header-wrapper">
2014-10-19 09:35:24 +04:00
{{ with .Repository }}
2017-12-31 03:47:52 +03:00
<div class="ui container">
2019-02-06 00:59:26 +03:00
<div class="repo-header">
2024-03-22 16:45:10 +03:00
<div class="flex-item tw-content-center">
2024-03-21 20:04:03 +03:00
<div class="flex-item-leading">
{{ template "repo/icon" . }}
</div>
2024-01-12 06:44:06 +03:00
<div class="flex-item-main">
2024-02-15 19:52:21 +03:00
<div class="flex-item-title gt-font-18">
2024-03-21 20:04:03 +03:00
<a class="muted gt-font-normal" href=" {{ .Owner .HomeLink }} "> {{ .Owner .Name }} </a>/<a class="muted" href=" {{ $ .RepoLink }} "> {{ .Name }} </a>
</div>
2024-01-12 06:44:06 +03:00
</div>
<div class="flex-item-trailing">
{{ if .IsArchived }}
2024-03-21 20:04:03 +03:00
<span class="ui basic label not-mobile"> {{ ctx .Locale .Tr "repo.desc.archived" }} </span>
<div class="repo-icon only-mobile" data-tooltip-content=" {{ ctx .Locale .Tr "repo.desc.archived" }} "> {{ svg "octicon-archive" 1 8 }} </div>
2024-01-12 06:44:06 +03:00
{{ end }}
{{ if .IsPrivate }}
2024-03-21 20:04:03 +03:00
<span class="ui basic label not-mobile"> {{ ctx .Locale .Tr "repo.desc.private" }} </span>
<div class="repo-icon only-mobile" data-tooltip-content=" {{ ctx .Locale .Tr "repo.desc.private" }} "> {{ svg "octicon-lock" 1 8 }} </div>
2024-01-12 06:44:06 +03:00
{{ else }}
{{ if .Owner .Visibility .IsPrivate }}
2024-03-21 20:04:03 +03:00
<span class="ui basic label not-mobile"> {{ ctx .Locale .Tr "repo.desc.internal" }} </span>
<div class="repo-icon only-mobile" data-tooltip-content=" {{ ctx .Locale .Tr "repo.desc.internal" }} "> {{ svg "octicon-shield-lock" 1 8 }} </div>
2020-12-08 07:14:28 +03:00
{{ end }}
2024-01-12 06:44:06 +03:00
{{ end }}
{{ if .IsTemplate }}
2024-03-21 20:04:03 +03:00
<span class="ui basic label not-mobile"> {{ ctx .Locale .Tr "repo.desc.template" }} </span>
<div class="repo-icon only-mobile" data-tooltip-content=" {{ ctx .Locale .Tr "repo.desc.template" }} "> {{ svg "octicon-repo-template" 1 8 }} </div>
2024-01-12 06:44:06 +03:00
{{ end }}
2024-01-19 19:05:02 +03:00
{{ if eq .ObjectFormatName "sha256" }}
<span class="ui basic label"> {{ ctx .Locale .Tr "repo.desc.sha256" }} </span>
{{ end }}
2020-12-08 07:14:28 +03:00
</div>
2017-12-31 03:47:52 +03:00
</div>
2021-11-23 01:32:16 +03:00
{{ if not ( or .IsBeingCreated .IsBroken ) }}
2019-10-13 16:23:14 +03:00
<div class="repo-buttons">
2021-03-01 03:47:30 +03:00
{{ if $ .RepoTransfer }}
<form method="post" action=" {{ $ .RepoLink }} /action/accept_transfer?redirect_to= {{ $ .RepoLink }} ">
{{ $ .CsrfTokenHtml }}
2023-09-25 11:56:50 +03: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-19 01:05:31 +03:00
<button type="submit" class="ui basic button {{ if $ .CanUserAcceptTransfer }} primary {{ end }} ok small" {{ if not $ .CanUserAcceptTransfer }} disabled {{ end }} >
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "repo.transfer.accept" }}
2021-03-01 03:47:30 +03:00
</button>
</div>
</form>
<form method="post" action=" {{ $ .RepoLink }} /action/reject_transfer?redirect_to= {{ $ .RepoLink }} ">
{{ $ .CsrfTokenHtml }}
2023-09-25 11:56:50 +03: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 16:21:30 +03:00
<button type="submit" class="ui basic button {{ if $ .CanUserAcceptTransfer }} red {{ end }} ok small" {{ if not $ .CanUserAcceptTransfer }} disabled {{ end }} >
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "repo.transfer.reject" }}
2021-03-01 03:47:30 +03:00
</button>
</div>
</form>
{{ end }}
2023-12-06 23:29:26 +03:00
{{ if $ .EnableFeed }}
{{ / * An extra div-element is not necessary here , as this button does not secretly contain two buttons . * / }}
2023-12-07 06:01:32 +03:00
<a class="ui compact small basic button" href=" {{ $ .RepoLink }} .rss" data-tooltip-content=" {{ ctx .Locale .Tr "rss_feed" }} ">
2023-12-06 23:29:26 +03:00
{{ svg "octicon-rss" 1 6 }}
2023-12-07 06:01:32 +03:00
</a>
2023-12-06 23:29:26 +03:00
{{ end }}
2024-02-05 12:56:20 +03:00
{{ template "repo/watch_unwatch" $ }}
2021-04-15 19:53:57 +03:00
{{ if not $ .DisableStars }}
2024-02-05 12:56:20 +03:00
{{ template "repo/star_unstar" $ }}
2021-04-15 19:53:57 +03:00
{{ end }}
2019-10-13 16:23:14 +03:00
{{ if and ( not .IsEmpty ) ( $ .Permission .CanRead $ .UnitTypeCode ) }}
2021-12-13 04:59:09 +03:00
<div class="ui labeled button
2023-12-05 00:48:42 +03:00
{{ if or ( not $ .IsSigned ) ( and ( not $ .CanSignedUserFork ) ( not $ .UserAndOrgForks ) ) }}
2023-03-24 13:35:38 +03:00
disabled
2021-12-13 04:59:09 +03:00
{{ end }} "
{{ if not $ .IsSigned }}
2023-09-25 11:56:50 +03:00
data-tooltip-content=" {{ ctx .Locale .Tr "repo.fork_guest_user" }} "
2023-12-05 00:48:42 +03:00
{{ else if and ( not $ .CanSignedUserFork ) ( not $ .UserAndOrgForks ) }}
2023-09-25 11:56:50 +03:00
data-tooltip-content=" {{ ctx .Locale .Tr "repo.fork_from_self" }} "
2021-12-13 04:59:09 +03:00
{{ end }}
2023-03-24 13:35:38 +03:00
>
2021-12-13 04:59:09 +03:00
<a class="ui compact {{ if $ .ShowForkModal }} show-modal {{ end }} small basic button"
{{ if not $ .CanSignedUserFork }}
{{ if gt ( len $ .UserAndOrgForks ) 1 }}
2024-03-21 20:04:03 +03:00
href="#" data-modal="#fork-repo-modal"
2021-12-13 04:59:09 +03:00
{{ else if eq ( len $ .UserAndOrgForks ) 1 }}
href=" {{ AppSubUrl }} / {{ ( in dex $ .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-05 00:48:42 +03:00
{{ else if not $ .UserAndOrgForks }}
2024-03-01 15:52:30 +03:00
href=" {{ $ .RepoLink }} /fork"
2021-12-13 04:59:09 +03:00
{{ else }}
2024-03-21 20:04:03 +03:00
href="#" data-modal="#fork-repo-modal"
2021-12-13 04:59:09 +03:00
{{ end }}
>
2024-03-21 20:04:03 +03:00
{{ svg "octicon-repo-forked" }} <span class="text not-mobile"> {{ ctx .Locale .Tr "repo.fork" }} </span>
2019-10-13 16:23:14 +03:00
</a>
2021-12-13 04:59:09 +03:00
<div class="ui small modal" id="fork-repo-modal">
<div class="header">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "repo.already_forked" .Name }}
2021-12-13 04:59:09 +03:00
</div>
2024-03-04 06:33:20 +03:00
<div class="content tw-text-left">
2021-12-13 04:59:09 +03:00
<div class="ui list">
{{ range $ .UserAndOrgForks }}
2023-02-13 20:59:59 +03:00
<div class="ui item gt-py-3">
2024-01-12 06:44:06 +03:00
<a href=" {{ .Link }} "> {{ svg "octicon-repo-forked" 1 6 "gt-mr-3" }} {{ .FullName }} </a>
2021-12-13 04:59:09 +03:00
</div>
{{ end }}
</div>
{{ if $ .CanSignedUserFork }}
2023-06-29 15:24:22 +03:00
<div class="divider"></div>
2024-03-01 15:52:30 +03:00
<a href=" {{ $ .RepoLink }} /fork"> {{ ctx .Locale .Tr "repo.fork_to_different_account" }} </a>
2021-12-13 04:59:09 +03:00
{{ end }}
</div>
</div>
2019-10-13 16:23:14 +03:00
<a class="ui basic label" href=" {{ .Link }} /forks">
2020-09-16 07:07:18 +03:00
{{ CountFmt .NumForks }}
2019-10-13 16:23:14 +03:00
</a>
</div>
{{ end }}
</div>
{{ end }}
2024-01-12 06:44:06 +03:00
</div>
2024-01-18 13:27:07 +03: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-12 06:44:06 +03: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 13:12:06 +03:00
{{ end }}
2024-03-15 05:05:31 +03:00
<overflow-menu class="ui container secondary pointing tabular top attached borderless menu navbar tw-pt-0 tw-my-0">
2021-11-23 01:32:16 +03:00
{{ if not ( or .Repository .IsBeingCreated .Repository .IsBroken ) }}
2024-03-15 05:05:31 +03:00
<div class="overflow-menu-items">
2019-10-13 16:23:14 +03:00
{{ if .Permission .CanRead $ .UnitTypeCode }}
2023-11-27 08:59:56 +03:00
<a class=" {{ if .PageIsViewCode }} active {{ end }} item" href=" {{ .RepoLink }} {{ if and ( ne .BranchName .Repository .DefaultBranch ) ( not $ .PageIsWiki ) }} /src/ {{ .BranchNameSubURL }} {{ end }} ">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-code" }} {{ ctx .Locale .Tr "repo.code" }}
2017-02-04 18:53:46 +03:00
</a>
2019-10-13 16:23:14 +03:00
{{ end }}
2017-03-18 13:59:07 +03:00
2019-10-13 16:23:14 +03:00
{{ if .Permission .CanRead $ .UnitTypeIssues }}
2022-12-09 16:34:51 +03:00
<a class=" {{ if .PageIsIssueList }} active {{ end }} item" href=" {{ .RepoLink }} /issues">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-issue-opened" }} {{ ctx .Locale .Tr "repo.issues" }}
2020-10-24 14:54:33 +03:00
{{ if .Repository .NumOpenIssues }}
2023-02-04 01:25:55 +03:00
<span class="ui small label"> {{ CountFmt .Repository .NumOpenIssues }} </span>
2020-10-24 14:54:33 +03:00
{{ end }}
2019-10-13 16:23:14 +03:00
</a>
{{ end }}
2017-02-04 18:53:46 +03:00
2019-10-13 16:23:14 +03:00
{{ if .Permission .CanRead $ .UnitTypeExternalTracker }}
2022-12-09 16:34:51 +03:00
<a class=" {{ if .PageIsIssueList }} active {{ end }} item" href=" {{ .RepoExternalIssuesLink }} " target="_blank" rel="noopener noreferrer">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-link-external" }} {{ ctx .Locale .Tr "repo.issues" }}
2019-10-13 16:23:14 +03:00
</a>
{{ end }}
2017-02-04 18:53:46 +03:00
2019-10-13 16:23:14 +03:00
{{ if and .Repository .CanEnablePulls ( .Permission .CanRead $ .UnitTypePullRequests ) }}
2022-12-09 16:34:51 +03:00
<a class=" {{ if .PageIsPullList }} active {{ end }} item" href=" {{ .RepoLink }} /pulls">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-git-pull-request" }} {{ ctx .Locale .Tr "repo.pulls" }}
2020-10-24 14:54:33 +03:00
{{ if .Repository .NumOpenPulls }}
2023-02-04 01:25:55 +03:00
<span class="ui small label"> {{ CountFmt .Repository .NumOpenPulls }} </span>
2020-10-24 14:54:33 +03:00
{{ end }}
2019-10-13 16:23:14 +03:00
</a>
{{ end }}
2017-02-04 18:53:46 +03: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-31 04:45:19 +03:00
{{ if and .EnableActions ( not .UnitActionsGlobalDisabled ) ( .Permission .CanRead $ .UnitTypeActions ) }}
<a class=" {{ if .PageIsActions }} active {{ end }} item" href=" {{ .RepoLink }} /actions">
2023-09-25 11:56:50 +03: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-31 04:45:19 +03:00
{{ if .Repository .NumOpenActionRuns }}
2023-02-04 01:25:55 +03: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-31 04:45:19 +03:00
{{ end }}
</a>
{{ end }}
2022-05-08 18:51:50 +03:00
{{ if .Permission .CanRead $ .UnitTypePackages }}
2022-12-09 16:34:51 +03:00
<a href=" {{ .RepoLink }} /packages" class=" {{ if .IsPackagesPage }} active {{ end }} item">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-package" }} {{ ctx .Locale .Tr "packages.title" }}
2022-05-08 18:51:50 +03:00
</a>
{{ end }}
2022-03-30 11:42:47 +03:00
2024-03-04 05:56:52 +03:00
{{ $ projectsUnit : = .Repository .MustGetUnit $ .Context $ .UnitTypeProjects }}
{{ if and ( not .UnitProjectsGlobalDisabled ) ( .Permission .CanRead $ .UnitTypeProjects ) ( $ projectsUnit .ProjectsConfig .IsProjectsAllowed "repo" ) }}
2022-12-09 16:34:51 +03:00
<a href=" {{ .RepoLink }} /projects" class=" {{ if .IsProjectsPage }} active {{ end }} item">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-project" }} {{ ctx .Locale .Tr "repo.project_board" }}
2020-10-24 14:54:33 +03:00
{{ if .Repository .NumOpenProjects }}
2023-02-04 01:25:55 +03:00
<span class="ui small label"> {{ CountFmt .Repository .NumOpenProjects }} </span>
2020-10-24 14:54:33 +03:00
{{ end }}
2020-08-17 06:07:38 +03:00
</a>
2022-08-26 00:55:52 +03:00
{{ end }}
2020-08-17 06:07:38 +03:00
2022-08-26 00:55:52 +03:00
{{ if and ( .Permission .CanRead $ .UnitTypeReleases ) ( not .IsEmptyRepo ) }}
2023-07-05 07:11:42 +03:00
<a class=" {{ if or .PageIsReleaseList .PageIsTagList }} active {{ end }} item" href=" {{ .RepoLink }} /releases">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-tag" }} {{ ctx .Locale .Tr "repo.releases" }}
2020-10-24 14:54:33 +03:00
{{ if .NumReleases }}
2023-02-04 01:25:55 +03:00
<span class="ui small label"> {{ CountFmt .NumReleases }} </span>
2020-10-24 14:54:33 +03:00
{{ end }}
2017-10-15 02:17:39 +03:00
</a>
2019-10-13 16:23:14 +03:00
{{ end }}
2017-10-15 02:17:39 +03:00
2023-04-24 19:28:37 +03:00
{{ if .Permission .CanRead $ .UnitTypeWiki }}
<a class=" {{ if .PageIsWiki }} active {{ end }} item" href=" {{ .RepoLink }} /wiki">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-book" }} {{ ctx .Locale .Tr "repo.wiki" }}
2019-10-13 16:23:14 +03:00
</a>
{{ end }}
2018-01-10 09:19:50 +03:00
2023-04-24 19:28:37 +03:00
{{ if .Permission .CanRead $ .UnitTypeExternalWiki }}
<a class="item" href=" {{ ( .Repository .MustGetUnit $ .Context $ .UnitTypeExternalWiki ) .ExternalWikiConfig .ExternalWikiURL }} " target="_blank" rel="noopener noreferrer">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-link-external" }} {{ ctx .Locale .Tr "repo.wiki" }}
2023-04-24 19:28:37 +03:00
</a>
{{ end }}
2019-10-13 16:23:14 +03:00
{{ if and ( .Permission .CanReadAny $ .UnitTypePullRequests $ .UnitTypeIssues $ .UnitTypeReleases ) ( not .IsEmptyRepo ) }}
2022-12-09 16:34:51 +03:00
<a class=" {{ if .PageIsActivity }} active {{ end }} item" href=" {{ .RepoLink }} /activity">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-pulse" }} {{ ctx .Locale .Tr "repo.activity" }}
2015-12-08 01:30:52 +03:00
</a>
2019-10-13 16:23:14 +03:00
{{ end }}
{{ template "custom/extra_tabs" . }}
{{ if .Permission .IsAdmin }}
2024-01-12 06:44:06 +03:00
<a class=" {{ if .PageIsRepoSettings }} active {{ end }} item" href=" {{ .RepoLink }} /settings">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-tools" }} {{ ctx .Locale .Tr "repo.settings" }}
2023-04-29 14:35:59 +03:00
</a>
2019-10-13 16:23:14 +03:00
{{ end }}
</div>
2021-11-23 01:32:16 +03:00
{{ else if .Permission .IsAdmin }}
2024-03-15 05:05:31 +03:00
<div class="overflow-menu-items">
2024-01-12 06:44:06 +03:00
<a class=" {{ if .PageIsRepoSettings }} active {{ end }} item" href=" {{ .RepoLink }} /settings">
2023-09-25 11:56:50 +03:00
{{ svg "octicon-tools" }} {{ ctx .Locale .Tr "repo.settings" }}
2023-04-29 14:35:59 +03:00
</a>
2021-11-23 01:32:16 +03:00
</div>
2019-10-13 16:23:14 +03:00
{{ end }}
2024-03-15 05:05:31 +03:00
</overflow-menu>
2015-12-08 01:30:52 +03:00
<div class="ui tabs divider"></div>
2016-03-04 22:50:34 +03:00
</div>