forgejo/web_src/js/features
sillyguodong 35a653d7ed
Support configuration variables on Gitea Actions (#24724)
Co-Author: @silverwind @wxiaoguang 
Replace: #24404

See:
- [defining configuration variables for multiple
workflows](https://docs.github.com/en/actions/learn-github-actions/variables#defining-configuration-variables-for-multiple-workflows)
- [vars
context](https://docs.github.com/en/actions/learn-github-actions/contexts#vars-context)

Related to:
- [x] protocol: https://gitea.com/gitea/actions-proto-def/pulls/7
- [x] act_runner: https://gitea.com/gitea/act_runner/pulls/157
- [x] act: https://gitea.com/gitea/act/pulls/43

#### Screenshoot
Create Variable:

![image](https://user-images.githubusercontent.com/33891828/236758288-032b7f64-44e7-48ea-b07d-de8b8b0e3729.png)


![image](https://user-images.githubusercontent.com/33891828/236758174-5203f64c-1d0e-4737-a5b0-62061dee86f8.png)

Workflow:
```yaml
  test_vars:
    runs-on: ubuntu-latest
    steps:
      - name: Print Custom Variables
        run: echo "${{ vars.test_key }}"
      - name: Try to print a non-exist var
        run: echo "${{ vars.NON_EXIST_VAR }}"
```

Actions Log:

![image](https://user-images.githubusercontent.com/33891828/236759075-af0c5950-368d-4758-a8ac-47a96e43b6e2.png)

---
This PR just implement the org / user (depends on the owner of the
current repository) and repo level variables, The Environment level
variables have not been implemented.
Because
[Environment](https://docs.github.com/en/actions/deployment/targeting-different-environments/using-environments-for-deployment#about-environments)
is a module separate from `Actions`. Maybe it would be better to create
a new PR to do it.

---------

Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: Giteabot <teabot@gitea.io>
2023-06-20 22:54:15 +00:00
..
admin Show OAuth2 errors to end users (#25261) 2023-06-15 01:12:50 +00:00
comp Batch delete issue and improve tippy opts (#25253) 2023-06-19 15:46:50 +08:00
captcha.js
citation.js
clipboard.js
codeeditor.js
colorpicker.js
common-global.js Support configuration variables on Gitea Actions (#24724) 2023-06-20 22:54:15 +00:00
common-issue-list.js
common-issue-list.test.js
common-organization.js
contextpopup.js Fix issue and commit status popup padding (#25254) 2023-06-15 10:09:16 +02:00
copycontent.js
dropzone.js
emoji.js
eventsource.sharedworker.js
file-fold.js
heatmap.js
imagediff.js
install.js
notification.js Rework notifications list (#24812) 2023-05-25 02:31:26 +00:00
org-team.js
pull-view-file.js
repo-branch.js
repo-code.js Change form actions to fetch for submit review box (#25219) 2023-06-14 16:01:37 +08:00
repo-code.test.js
repo-commit.js Fix issue and commit status popup padding (#25254) 2023-06-15 10:09:16 +02:00
repo-common.js
repo-diff-filetree.js
repo-diff.js Refactor diffFileInfo / DiffTreeStore (#24998) 2023-05-30 18:53:15 +08:00
repo-editor.js
repo-findfile.js
repo-findfile.test.js
repo-graph.js
repo-home.js
repo-issue-content.js Use flex to align SVG and text (#25163) 2023-06-14 16:40:15 +00:00
repo-issue-list.js Batch delete issue and improve tippy opts (#25253) 2023-06-19 15:46:50 +08:00
repo-issue-pr-form.js
repo-issue.js Fix sidebar label dropdown divider (#25359) 2023-06-19 17:49:50 +00:00
repo-legacy.js Improve and fix bugs surrounding reactions (#24760) 2023-05-28 01:34:18 +00:00
repo-migrate.js
repo-migration.js
repo-projects.js Disable Create column button while the column name is empty (#25192) 2023-06-13 09:57:03 +00:00
repo-release.js
repo-settings.js
repo-template.js
repo-unicode-escape.js
repo-wiki.js
sshkey-helper.js
stopwatch.js
tablesort.js
tribute.js rename tributeValues to mentionValues (#25375) 2023-06-20 03:32:49 +00:00
user-auth-webauthn.js Fix webauthn regression and improve code (#25113) 2023-06-07 19:20:18 +08:00
user-auth.js
user-settings.js