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

Update GHA workflow #30

Merged
merged 1 commit into from
Jul 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
64 changes: 64 additions & 0 deletions .github/ISSUE_TEMPLATE/QUEST_COMPLETION.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: '과제 완료 인증'
description: '과제 완료 인증용 템플릿'
title: "과제 완료 인증"

body:
- type: markdown
attributes:
value: |
과제를 완료하신 분들은 이슈를 통해 인증을 받을 수 있습니다. 아래의 템플릿을 작성하여 이슈를 등록해 주세요.

- type: dropdown
id: title
attributes:
label: '제목'
options:
- '과제 1: Blazor 앱'
# - '과제 2: 단위 테스트'
# - '과제 3: .NET Aspire'
default: 0

- type: input
id: github_id
attributes:
label: 'GitHub 프로필 URL'
description: 'GitHub 프로필 주소를 입력하세요. (예: https://github.com/aliencube)'
placeholder: 'GitHub 프로필 주소를 입력하세요. (예: https://github.com/aliencube)'
validations:
required: true

- type: input
id: github_repository
attributes:
label: 'GitHub 리포지토리 URL'
description: '과제를 저장한 GitHub 리포지토리 주소를 입력하세요. (예: https://github.com/aliencube/azure-openai-sdk-proxy)'
placeholder: '과제를 저장한 GitHub 리포지토리 주소를 입력하세요. (예: https://github.com/aliencube/azure-openai-sdk-proxy)'
validations:
required: true

# - type: input
# id: frontend_url
# attributes:
# label: '프론트엔드 앱 URL'
# description: '프론트엔드 앱 URL을 입력해 주세요. (예: https://webapp.howsweet-fcd6fb4e.koreacentral.azurecontainerapps.io)'
# placeholder: '프론트엔드 앱 URL을 입력해 주세요. (예: https://webapp.howsweet-fcd6fb4e.koreacentral.azurecontainerapps.io)'
# validations:
# required: true

# - type: input
# id: backend_url
# attributes:
# label: '백엔드 앱 URL'
# description: '백엔드 앱 URL을 입력해 주세요. (예: https://apiapp.howsweet-fcd6fb4e.koreacentral.azurecontainerapps.io)'
# placeholder: '백엔드 앱 URL을 입력해 주세요. (예: https://apiapp.howsweet-fcd6fb4e.koreacentral.azurecontainerapps.io)'
# validations:
# required: true

# - type: input
# id: dashboard_url
# attributes:
# label: '대시보드 앱 URL'
# description: '대시보드 앱 URL을 입력해 주세요. (예: https://aspire-dashboard.ext.howsweet-fcd6fb4e.koreacentral.azurecontainerapps.io)'
# placeholder: '대시보드 앱 URL을 입력해 주세요. (예: https://aspire-dashboard.ext.howsweet-fcd6fb4e.koreacentral.azurecontainerapps.io)'
# validations:
# required: true
2 changes: 2 additions & 0 deletions .github/workflows/azure-dev-build-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- 'feature/*'
paths-ignore:
- '.github/**'
pull_request:
branches:
- main
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/azure-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
push:
branches:
- main
paths-ignore:
- '.github/**'

permissions:
id-token: write
Expand Down Expand Up @@ -62,6 +64,7 @@ jobs:
uses: Azure/[email protected]

- name: Log in with Azure (Federated Credentials)
if: env.AZURE_CLIENT_ID != ''
run: |
azd auth login `
--client-id "$Env:AZURE_CLIENT_ID" `
Expand Down
Loading