add
添加项目文件
This commit is contained in:
5
zh/.github/CODEOWNERS
vendored
Normal file
5
zh/.github/CODEOWNERS
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
# Use this file to define individuals or teams that are responsible for code in a repository.
|
||||
# Read more: <https://help.github.com/articles/about-codeowners/>
|
||||
|
||||
* @binbashar/leverage-ref-architecture-aws-admin
|
||||
* @binbashar/leverage-ref-architecture-aws-dev
|
||||
3
zh/.github/FUNDING.yml
vendored
Normal file
3
zh/.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
github: binbashar
|
||||
33
zh/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
33
zh/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: 'bug'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
## Describe the Bug
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
## Expected Behavior
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
## Steps to Reproduce
|
||||
Steps to reproduce the behavior:
|
||||
1. Go to '...'
|
||||
2. Run '....'
|
||||
3. Enter '....'
|
||||
4. See error
|
||||
|
||||
## Screenshots
|
||||
If applicable, add screenshots or logs to help explain your problem.
|
||||
|
||||
## Environment (please complete the following information):
|
||||
|
||||
Anything that will help us triage the bug will help. Here are some ideas:
|
||||
- OS: [e.g. Linux, OSX, WSL, etc]
|
||||
- Version [e.g. 10.15]
|
||||
|
||||
## Additional Context
|
||||
Add any other context about the problem here.
|
||||
8
zh/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
8
zh/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
blank_issues_enabled: false
|
||||
|
||||
contact_links:
|
||||
|
||||
- name: DevOps Cloud Services Program
|
||||
url: https://www.binbash.com.ar
|
||||
about: |-
|
||||
At binbash Leverage, our focus is on creating reusable, high quality infrastructure code, such as our Reference Architecture for AWS backed by our DevOps Automation Code Library.
|
||||
32
zh/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
32
zh/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
name: Feature Request
|
||||
about: Suggest an idea for this project
|
||||
title: ''
|
||||
labels: 'feature request'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
## Describe the Feature
|
||||
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
## Expected Behavior
|
||||
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
## Use Case
|
||||
|
||||
Is your feature request related to a problem/challenge you are trying to solve? Please provide some additional context of why this feature or capability will be valuable.
|
||||
|
||||
## Describe Ideal Solution
|
||||
|
||||
A clear and concise description of what you want to happen. If you don't know, that's okay.
|
||||
|
||||
## Alternatives Considered
|
||||
|
||||
Explain what alternative solutions or features you've considered.
|
||||
|
||||
## Additional Context
|
||||
|
||||
Add any other context or screenshots about the feature request here.
|
||||
0
zh/.github/ISSUE_TEMPLATE/question.md
vendored
Normal file
0
zh/.github/ISSUE_TEMPLATE/question.md
vendored
Normal file
13
zh/.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
13
zh/.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
## What?
|
||||
* Describe high-level what changed as a result of these commits (i.e. in plain-english, what do these changes mean?)
|
||||
* Use bullet points to be concise and to the point.
|
||||
|
||||
## Why?
|
||||
* Provide the justifications for the changes (e.g. business case).
|
||||
* Describe why these changes were made (e.g. why do these commits fix the problem?)
|
||||
* Use bullet points to be concise and to the point.
|
||||
|
||||
## References
|
||||
* Link to any supporting github issues or helpful documentation to add some context (e.g. stackoverflow).
|
||||
* Use `closes #123`, if this PR closes a GitHub issue `#123`
|
||||
|
||||
41
zh/.github/release-drafter.yml
vendored
Normal file
41
zh/.github/release-drafter.yml
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
name-template: 'v$RESOLVED_VERSION 🌈'
|
||||
tag-template: 'v$RESOLVED_VERSION'
|
||||
categories:
|
||||
- title: '🚀 Features'
|
||||
labels:
|
||||
- 'feature'
|
||||
- 'enhancement'
|
||||
- title: '💣 Breaking Change'
|
||||
label:
|
||||
- 'breakingchange'
|
||||
- 'breaking'
|
||||
- title: '🐛 Bug Fixes'
|
||||
labels:
|
||||
- 'fix'
|
||||
- 'bugfix'
|
||||
- 'bug'
|
||||
- title: '📝 Documentation'
|
||||
label:
|
||||
- 'doc'
|
||||
- 'documentation'
|
||||
- title: '🔨 Maintenance'
|
||||
label:
|
||||
- 'chore'
|
||||
- 'maintenance'
|
||||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
|
||||
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
|
||||
version-resolver:
|
||||
major:
|
||||
labels:
|
||||
- 'major'
|
||||
minor:
|
||||
labels:
|
||||
- 'minor'
|
||||
patch:
|
||||
labels:
|
||||
- 'patch'
|
||||
default: patch
|
||||
template: |
|
||||
## Changes
|
||||
|
||||
$CHANGES
|
||||
28
zh/.github/workflows/release-management.yml
vendored
Normal file
28
zh/.github/workflows/release-management.yml
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
name: Release Management
|
||||
|
||||
on:
|
||||
# push:
|
||||
# # branches to consider in the event; optional, defaults to all
|
||||
# branches:
|
||||
# - master
|
||||
# pull_request event is required only for autolabeler
|
||||
pull_request:
|
||||
# Only following types are handled by the action, but one can default to all as well
|
||||
types: [opened, reopened, synchronize, labeled, unlabeled]
|
||||
|
||||
jobs:
|
||||
update_release_draft:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# Drafts your next Release notes
|
||||
- uses: release-drafter/release-drafter@v5
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- uses: act10ns/slack@v1
|
||||
with:
|
||||
status: ${{ job.status }}
|
||||
channel: $SLACK_CI_CHANNEL
|
||||
env:
|
||||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
||||
SLACK_CI_CHANNEL: ${{ secrets.SLACK_CI_CHANNEL }}
|
||||
Reference in New Issue
Block a user