mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-26 23:57:35 +08:00
commit
fd11381145
14
.github/release-drafter.yml
vendored
14
.github/release-drafter.yml
vendored
@ -12,7 +12,6 @@ name-template: 'v$RESOLVED_VERSION'
|
|||||||
tag-template: 'v$RESOLVED_VERSION'
|
tag-template: 'v$RESOLVED_VERSION'
|
||||||
template: |
|
template: |
|
||||||
## What Changed 👀
|
## What Changed 👀
|
||||||
|
|
||||||
$CHANGES
|
$CHANGES
|
||||||
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
|
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
|
||||||
categories:
|
categories:
|
||||||
@ -26,7 +25,7 @@ categories:
|
|||||||
- title: 🧪 Test
|
- title: 🧪 Test
|
||||||
labels:
|
labels:
|
||||||
- test
|
- test
|
||||||
- title: 🚥 CI
|
- title: 👷 CI
|
||||||
labels:
|
labels:
|
||||||
- ci
|
- ci
|
||||||
- title: ♻️ Changes
|
- title: ♻️ Changes
|
||||||
@ -37,9 +36,6 @@ categories:
|
|||||||
- title: ⛔️ Deprecated
|
- title: ⛔️ Deprecated
|
||||||
labels:
|
labels:
|
||||||
- deprecated
|
- deprecated
|
||||||
- title: 🗑 Removed
|
|
||||||
labels:
|
|
||||||
- removed
|
|
||||||
- title: 🔐 Security
|
- title: 🔐 Security
|
||||||
labels:
|
labels:
|
||||||
- security
|
- security
|
||||||
@ -53,8 +49,6 @@ categories:
|
|||||||
- dependencies
|
- dependencies
|
||||||
- title: 🧰 Maintenance
|
- title: 🧰 Maintenance
|
||||||
label: 'chore'
|
label: 'chore'
|
||||||
- title: 🧺 Miscellaneous #Everything except ABAP
|
|
||||||
label: misc
|
|
||||||
- title: 📝 Other changes
|
- 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
|
## putting no labels pr to `Other Changes` category with no label - https://github.com/release-drafter/release-drafter/issues/139#issuecomment-480473934
|
||||||
|
|
||||||
@ -88,6 +82,12 @@ autolabeler:
|
|||||||
- label: 'feature'
|
- label: 'feature'
|
||||||
branch:
|
branch:
|
||||||
- '/(feat)\/.*/'
|
- '/(feat)\/.*/'
|
||||||
|
- label: 'minor'
|
||||||
|
branch:
|
||||||
|
- '/(feat)\/.*/'
|
||||||
|
- label: 'patch'
|
||||||
|
branch:
|
||||||
|
- '/(fix)\/.*/'
|
||||||
body:
|
body:
|
||||||
- '/JIRA-[0-9]{1,4}/'
|
- '/JIRA-[0-9]{1,4}/'
|
||||||
|
|
||||||
|
|||||||
2
.github/workflows/dotnet.yml
vendored
2
.github/workflows/dotnet.yml
vendored
@ -3,6 +3,8 @@ name: Build-Test
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "main" , "develop"]
|
branches: [ "main" , "develop"]
|
||||||
|
paths-ignore:
|
||||||
|
- "README.md"
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "main" , "develop" ]
|
branches: [ "main" , "develop" ]
|
||||||
|
|
||||||
|
|||||||
2
.github/workflows/release-drafter.yml
vendored
2
.github/workflows/release-drafter.yml
vendored
@ -6,8 +6,6 @@
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- develop
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update_release_draft:
|
update_release_draft:
|
||||||
name: Release drafter
|
name: Release drafter
|
||||||
|
|||||||
28
.github/workflows/update-changelog.yml
vendored
28
.github/workflows/update-changelog.yml
vendored
@ -1,28 +0,0 @@
|
|||||||
name: 'Update Changelog'
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [released]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
update:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
ref: develop
|
|
||||||
|
|
||||||
- name: Update Changelog
|
|
||||||
uses: stefanzweifel/changelog-updater-action@v1
|
|
||||||
with:
|
|
||||||
release-notes: ${{ github.event.release.body }}
|
|
||||||
latest-version: ${{ github.event.release.name }}
|
|
||||||
|
|
||||||
- name: Commit updated CHANGELOG
|
|
||||||
uses: stefanzweifel/git-auto-commit-action@v4
|
|
||||||
with:
|
|
||||||
branch: develop
|
|
||||||
commit_message: Update CHANGELOG
|
|
||||||
file_pattern: CHANGELOG.md
|
|
||||||
@ -1,4 +0,0 @@
|
|||||||
# Changelog
|
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
|
||||||
|
|
||||||
Loading…
x
Reference in New Issue
Block a user