Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
730af21
rm notification data
gy2006 Oct 15, 2021
31b3627
init notification home page
gy2006 Nov 3, 2021
cf54832
add create notification page
gy2006 Nov 4, 2021
39a919d
list notifications
gy2006 Nov 5, 2021
31338f5
show notification list
gy2006 Nov 5, 2021
687456e
save notification
gy2006 Nov 8, 2021
6afb137
delete notification
gy2006 Nov 9, 2021
0529dc3
rename to trigger
gy2006 Nov 12, 2021
74f9249
rename trigger in i18n
gy2006 Nov 12, 2021
05dca7b
fix i18n for trigger
gy2006 Nov 12, 2021
6dfc12d
add webhook key value table
gy2006 Nov 20, 2021
b437f36
enable to edit webhook trigger params & headers
gy2006 Nov 22, 2021
5fc4392
enable to edit webhook trigger params and headers
gy2006 Nov 23, 2021
cff9122
rename to tirgger
gy2006 Nov 23, 2021
aa8dcf4
refactor kubeconfig editor to data eidtor and load secret in edit page
gy2006 Nov 23, 2021
9083768
enable to save webhook body
gy2006 Nov 23, 2021
51bf57a
add url and http method field for webhook trigger
gy2006 Nov 23, 2021
4aa847c
rename trigger action to event
gy2006 Nov 25, 2021
11e0a40
remove settings header from func list
gy2006 Nov 29, 2021
f11f649
show recent delivery table for tigger
gy2006 Dec 1, 2021
a531ce5
add btn to show delivery desc
gy2006 Dec 2, 2021
3d8ee3d
Merge pull request #144 from FlowCI/feature/1547
gy2006 Dec 2, 2021
9c6abc8
display created admin as bold
gy2006 Dec 3, 2021
5b4a784
show multiple commits
gy2006 Dec 8, 2021
feca6df
multiple commits for tag
gy2006 Dec 8, 2021
51dfe72
add web url in system setting page
gy2006 Dec 8, 2021
ae2e493
show built in variables
gy2006 Dec 10, 2021
fccdd81
skip _TYPE_ for job context
gy2006 Dec 10, 2021
8c4c8e7
Merge pull request #145 from FlowCI/feature/1569
gy2006 Dec 10, 2021
383eba0
fix branch var is missing on manual job start
gy2006 Dec 10, 2021
1841a01
show icon,title and desc for template
gy2006 Dec 13, 2021
1b19aac
Merge pull request #146 from FlowCI/feature/1574
gy2006 Dec 13, 2021
84f211e
load related jobs
gy2006 Dec 15, 2021
6a90185
apply n/a for not applicable message
gy2006 Dec 15, 2021
f1763fb
Merge pull request #147 from FlowCI/feature/1568
gy2006 Dec 15, 2021
ae50944
apply icons for flow tab and change unknow to n/a
gy2006 Dec 15, 2021
f48c207
upgrade ver to 1.21.50
gy2006 Dec 16, 2021
88756e5
fix date selection on statistic
gy2006 Jan 13, 2022
f1cb4b5
add idea run config file
gy2006 Jan 19, 2022
6e49db7
support multi docker arch
gy2006 Jan 20, 2022
c9da55a
add job summary for patchset
gy2006 Jan 29, 2022
823379f
add patchset to job summary
gy2006 Jan 29, 2022
aa3119f
improve ui for patchset
gy2006 Feb 3, 2022
a3c4265
check git commit info with trigger
gy2006 Feb 6, 2022
c28e8e2
Merge pull request #150 from FlowCI/feature/1588
gy2006 Feb 6, 2022
2af18eb
clean up debug console
gy2006 Feb 6, 2022
69d7a90
fix chinese char error on yaml
gy2006 Feb 6, 2022
ff46bae
enable to list and add git config
gy2006 Feb 28, 2022
9300fcf
delete git setting
gy2006 Mar 1, 2022
414ad60
Merge pull request #154 from FlowCI/feature/1589
gy2006 Mar 1, 2022
922bab8
support host on git config
gy2006 Mar 16, 2022
0fe9f92
edit git config with host
gy2006 Mar 18, 2022
b969c9d
Merge pull request #155 from FlowCI/feature/1580
gy2006 Mar 18, 2022
8b67cbd
enable to config gitlab
gy2006 Mar 24, 2022
f4a6490
v1.22.12
gy2006 Mar 27, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ coverage
.yarn-cache
deploy.sh
.vscode/
.run/
15 changes: 15 additions & 0 deletions .run/start.run.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="start" type="js.build_tools.npm" nameIsGenerated="true">
<package-json value="$PROJECT_DIR$/package.json" />
<command value="run" />
<scripts>
<script value="start" />
</scripts>
<node-interpreter value="project" />
<package-manager value="npm" />
<envs>
<env name="VUE_APP_API_URL" value="http://192.168.31.173:8080" />
</envs>
<method v="2" />
</configuration>
</component>
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CURRENT_DIR := $(shell pwd)
DOCKER_VOLUME := -v $(CURRENT_DIR):/ws
DOCKER_IMG := node:14
DOCKER_RUN := docker run -it --rm -w /ws $(DOCKER_VOLUME) --network host $(DOCKER_IMG)
DOCKER_BUILD := docker build -f ./Dockerfile -t flowci/web:latest -t flowci/web:$(tag) .
DOCKER_BUILD := docker buildx build -f ./Dockerfile --platform linux/arm64,linux/amd64 --push -t flowci/web:latest -t flowci/web:$(tag) .

.PHONY: build clean image

Expand Down
Loading