mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-16 07:26:25 +08:00
Add files via upload
This commit is contained in:
parent
50b2c0fa3e
commit
bb0ef6b9a3
14
.github/dependabot.yml
vendored
Normal file
14
.github/dependabot.yml
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: nuget
|
||||
directory: '/'
|
||||
schedule:
|
||||
interval: monthly
|
||||
reviewers:
|
||||
- meysamhadeli
|
||||
assignees:
|
||||
- meysamhadeli
|
||||
ignore:
|
||||
- dependency-name: '*'
|
||||
versions:
|
||||
- '>= 0'
|
||||
39
.github/pull_request_template.md
vendored
Normal file
39
.github/pull_request_template.md
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
<!-- Type of change
|
||||
Please label this PR with one of the existing labels, depending on the scope of your change.
|
||||
-->
|
||||
|
||||
## What does this PR do?
|
||||
|
||||
<!-- Mandatory
|
||||
Explain here the changes you made on the PR. Please explain the WHAT: patterns used, algorithms implemented, design architecture, etc.
|
||||
-->
|
||||
|
||||
## Why is it important?
|
||||
|
||||
<!-- Mandatory
|
||||
Explain here the WHY, or the rationale / motivation for the changes.
|
||||
-->
|
||||
|
||||
## Related issues
|
||||
|
||||
<!-- Recommended
|
||||
Link related issues below. Insert the issue link or reference after the word "Closes" if merging this should automatically close it.
|
||||
|
||||
- Closes #123
|
||||
- Relates #123
|
||||
- Requires #123
|
||||
- Supersedes #123
|
||||
-->
|
||||
-
|
||||
|
||||
<!-- Recommended
|
||||
## How to test this PR
|
||||
|
||||
Explain here how this PR will be tested by the reviewer: commands, dependencies, steps, etc.
|
||||
-->
|
||||
|
||||
<!-- Optional
|
||||
## Follow-ups
|
||||
|
||||
Add here any thought that you consider could be identified as an actionable step once this PR is merged.
|
||||
-->
|
||||
99
.github/release-drafter.yml
vendored
Normal file
99
.github/release-drafter.yml
vendored
Normal file
@ -0,0 +1,99 @@
|
||||
# https://johanneskonings.dev/github/2021/02/28/github_automatic_releases_and-changelog/
|
||||
# https://tiagomichaelsousa.dev/articles/stop-writing-your-changelogs-manually
|
||||
# https://github.com/release-drafter/release-drafter/issues/551
|
||||
# https://github.com/release-drafter/release-drafter/pull/1013
|
||||
# https://github.com/release-drafter/release-drafter/issues/139
|
||||
# https://github.com/atk4/data/blob/develop/.github/release-drafter.yml
|
||||
|
||||
# This release drafter follows the conventions from https://keepachangelog.com, https://common-changelog.org/
|
||||
# https://www.conventionalcommits.org
|
||||
|
||||
name-template: 'v$RESOLVED_VERSION'
|
||||
tag-template: 'v$RESOLVED_VERSION'
|
||||
template: |
|
||||
## What Changed 👀
|
||||
|
||||
$CHANGES
|
||||
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
|
||||
categories:
|
||||
- title: 🚀 Features
|
||||
labels:
|
||||
- feature
|
||||
- title: 🐛 Bug Fixes
|
||||
labels:
|
||||
- fix
|
||||
- bug
|
||||
- title: ♻️ Changes
|
||||
labels:
|
||||
- changed
|
||||
- enhancement
|
||||
- refactor
|
||||
- title: ⛔️ Deprecated
|
||||
labels:
|
||||
- deprecated
|
||||
- title: 🗑 Removed
|
||||
labels:
|
||||
- removed
|
||||
- title: 🔐 Security
|
||||
labels:
|
||||
- security
|
||||
- title: 📄 Documentation
|
||||
labels:
|
||||
- docs
|
||||
- documentation
|
||||
- title: 🧩 Dependency Updates
|
||||
labels:
|
||||
- deps
|
||||
- dependencies
|
||||
- title: 🧰 Maintenance
|
||||
label: 'chore'
|
||||
- title: 🧺 Miscellaneous #Everything except ABAP
|
||||
label: misc
|
||||
- title: 📝 Other changes
|
||||
## putting no labels pr to `Other Changes` category with no label - https://github.com/release-drafter/release-drafter/issues/139#issuecomment-480473934
|
||||
|
||||
# https://www.trywilco.com/post/wilco-ci-cd-github-heroku
|
||||
# https://github.com/release-drafter/release-drafter#autolabeler
|
||||
# https://github.com/fuxingloh/multi-labeler
|
||||
|
||||
# Using regex for defining rules - https://regexr.com/ - https://regex101.com/
|
||||
autolabeler:
|
||||
- label: 'chore'
|
||||
branch:
|
||||
- '/(chore)\/.*/'
|
||||
title:
|
||||
- '/^chore: .*/'
|
||||
- label: 'docs'
|
||||
branch:
|
||||
- '/(docs)\/.*/'
|
||||
title:
|
||||
- '/^docs: .*/'
|
||||
- label: 'bug'
|
||||
branch:
|
||||
- '/(fix)\/.*/'
|
||||
title:
|
||||
- '/^fix: .*/'
|
||||
- label: 'feature'
|
||||
branch:
|
||||
- '/(feat)\/.*/'
|
||||
title:
|
||||
- '/^feat: .*/'
|
||||
body:
|
||||
- '/JIRA-[0-9]{1,4}/'
|
||||
|
||||
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
|
||||
|
||||
exclude-labels:
|
||||
- skip-changelog
|
||||
47
.github/release.yml
vendored
Normal file
47
.github/release.yml
vendored
Normal file
@ -0,0 +1,47 @@
|
||||
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
|
||||
# https://github.com/bcoe/conventional-release-labels
|
||||
# https://dev.to/github/how-to-automatically-generate-release-notes-for-your-project-2ng8
|
||||
# https://www.conventionalcommits.org/en/v1.0.0/
|
||||
|
||||
# github release pre-defined template
|
||||
changelog:
|
||||
exclude:
|
||||
labels:
|
||||
- ignore-for-release
|
||||
categories:
|
||||
- title: 🚀 Features
|
||||
labels:
|
||||
- feature
|
||||
- title: 🐛 Bug Fixes
|
||||
labels:
|
||||
- fix
|
||||
- bug
|
||||
- title: ♻️ Changes
|
||||
labels:
|
||||
- changed
|
||||
- enhancement
|
||||
- refactor
|
||||
- title: ⛔️ Deprecated
|
||||
labels:
|
||||
- deprecated
|
||||
- title: 🗑 Removed
|
||||
labels:
|
||||
- removed
|
||||
- title: 🔐 Security
|
||||
labels:
|
||||
- security
|
||||
- title: 📄 Documentation
|
||||
labels:
|
||||
- docs
|
||||
- documentation
|
||||
- title: 🧩 Dependency Updates
|
||||
labels:
|
||||
- deps
|
||||
- dependencies
|
||||
- title: 🧰 Maintenance
|
||||
label: 'chore'
|
||||
- title: 🧺 Miscellaneous #Everything except ABAP
|
||||
label: misc
|
||||
- title: Other Changes
|
||||
labels:
|
||||
- "*"
|
||||
Loading…
x
Reference in New Issue
Block a user