Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cicd stack 테스트를 위한 main merge #25

Merged
merged 32 commits into from
Apr 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
39e2676
feature. apply golangci lint
ktkfree Apr 6, 2023
776de18
feature. add parameter for lma installation
ktkfree Apr 6, 2023
ef91c4c
trivial. change rand seed
ktkfree Apr 6, 2023
7707dcd
minor fix: add path paramter(organization) for user resource
cho4036 Apr 7, 2023
bfcc5a3
minor fix: add path paramter(organization) for user resource
cho4036 Apr 7, 2023
9e1ac98
lin fix
cho4036 Apr 7, 2023
039b35e
trivial. test action
ktkfree Apr 7, 2023
1476d44
test: dummy value
cho4036 Apr 7, 2023
c2d1d88
Merge pull request #19 from cho4036/minor_fix
ktkfree Apr 7, 2023
b37a704
feature. add API for checking cloudsetting name
ktkfree Apr 7, 2023
4b5f48f
trivial. rollback to jdk's fixes
ktkfree Apr 7, 2023
4f3950c
minor fix: typo
cho4036 Apr 7, 2023
2f0c7af
Merge pull request #20 from cho4036/minor_fix
cho4036 Apr 7, 2023
ca15545
minor fix: typo
cho4036 Apr 7, 2023
9cafe89
Merge pull request #21 from cho4036/minor_fix
cho4036 Apr 7, 2023
517dda3
feature. add addtional-infos to stack-template
ktkfree Apr 7, 2023
a77fff1
Merge branch 'develop' of https://github.com/openinfradev/tks-api int…
ktkfree Apr 7, 2023
6830090
trivial. update swagger
ktkfree Apr 7, 2023
4a00e07
faeture. change hardcoded logic to db lookup.
ktkfree Apr 7, 2023
40d8f70
feature. add model, controller
ktkfree Apr 9, 2023
1b84880
feature. add stack handler
ktkfree Apr 10, 2023
be7da6a
minor fix: change error type badrequest -> unauthorized
cho4036 Apr 10, 2023
f93f579
Merge pull request #22 from cho4036/minor_fix
ktkfree Apr 10, 2023
8ac9159
Merge branch 'develop' of https://github.com/openinfradev/tks-api int…
ktkfree Apr 10, 2023
99dd645
Merge pull request #23 from openinfradev/stack_template_services
ktkfree Apr 10, 2023
6de8240
feature. refactoring repository interface
ktkfree Apr 11, 2023
17ef87a
feature. add api to stack (fetch)
ktkfree Apr 11, 2023
7fdc027
feature. add stack creation
ktkfree Apr 13, 2023
bd0f8a3
Merge branch 'develop' into add_stack
ktkfree Apr 13, 2023
6b6dadd
trivial. fix line error
ktkfree Apr 13, 2023
5dcc97e
Merge branch 'add_stack' of https://github.com/openinfradev/tks-api i…
ktkfree Apr 13, 2023
341686e
Merge pull request #24 from openinfradev/add_stack
ktkfree Apr 13, 2023
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
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Build image
on:
pull_request:
pull_request_target:
branches:
- main
- develop

env:
SERVICE: tks-api
TAG: ${{github.sha}}
Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: golangci-lint
on:
push:
tags:
- v*
branches:
- main
- develop
- "release**"
pull_request:
branches:
- main
- develop
- "release**"
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: v1.51.0
args: --timeout=5m
# Optional: working directory, useful for monorepos
# working-directory: somedir

# Optional: golangci-lint command line arguments.
# args: --issues-exit-code=0

# Optional: show only new issues if it's a pull request. The default value is `false`.
# only-new-issues: true

# Optional: if set to true then the action will use pre-installed Go.
# skip-go-installation: true

# Optional: if set to true then the action don't cache or restore ~/go/pkg.
# skip-pkg-cache: true

# Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
# skip-build-cache: true
Loading