mirror of
https://github.com/shizand/statapp.git
synced 2024-12-23 12:12:59 +03:00
chore: рефакторит Github Actions workflows
This commit is contained in:
parent
4ae759a3de
commit
b5c5f59e0f
6
.github/workflows/pr-title.yml
vendored
6
.github/workflows/pr-title.yml
vendored
@ -13,11 +13,9 @@ jobs:
|
||||
name: Проверка PR заголовка
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# Please look up the latest version from
|
||||
# https://github.com/amannn/action-semantic-pull-request/releases
|
||||
- uses: amannn/action-semantic-pull-request@v3.4.6
|
||||
- uses: amannn/action-semantic-pull-request@v5
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.TERRAFORM_YANDEX_COMPUTE_TOKEN }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
# Configure which types are allowed.
|
||||
# Default: https://github.com/commitizen/conventional-commit-types
|
||||
|
30
.github/workflows/release.yml
vendored
Normal file
30
.github/workflows/release.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Semantic Release
|
||||
uses: cycjimmy/semantic-release-action@м4
|
||||
with:
|
||||
branches: |
|
||||
[
|
||||
'+([0-9])?(.{+([0-9]),x}).x',
|
||||
'main'
|
||||
]
|
||||
extra_plugins: |
|
||||
@semantic-release/commit-analyzer
|
||||
@semantic-release/release-notes-generator
|
||||
@semantic-release/git
|
||||
@semantic-release/changelog
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
@ -7,48 +7,19 @@
|
||||
[
|
||||
"@semantic-release/commit-analyzer",
|
||||
{
|
||||
"preset": "ESLint",
|
||||
"preset": "angular",
|
||||
"releaseRules": [
|
||||
{
|
||||
"tag": "breaking",
|
||||
"release": "major"
|
||||
},
|
||||
{
|
||||
"tag": "chore",
|
||||
"release": false
|
||||
},
|
||||
{
|
||||
"tag": "ci",
|
||||
"release": false
|
||||
},
|
||||
{
|
||||
"tag": "docs",
|
||||
"release": false
|
||||
},
|
||||
{
|
||||
"tag": "feat",
|
||||
"release": "minor"
|
||||
},
|
||||
{
|
||||
"tag": "fix",
|
||||
"release": "patch"
|
||||
},
|
||||
{
|
||||
"tag": "refactor",
|
||||
"release": "patch"
|
||||
},
|
||||
{
|
||||
"tag": "security",
|
||||
"release": "patch"
|
||||
},
|
||||
{
|
||||
"tag": "style",
|
||||
"release": "patch"
|
||||
},
|
||||
{
|
||||
"tag": "test",
|
||||
"release": false
|
||||
}
|
||||
{ "type": "breaking", "release": "major" },
|
||||
{ "type": "chore", "release": false },
|
||||
{ "type": "ci", "release": false },
|
||||
{ "type": "docs", "scope": "README.md", "release": "patch" },
|
||||
{ "type": "docs", "release": false },
|
||||
{ "type": "feat", "release": "minor" },
|
||||
{ "type": "fix", "release": "patch" },
|
||||
{ "type": "refactor", "release": "patch" },
|
||||
{ "type": "security", "release": "patch" },
|
||||
{ "type": "style", "release": "patch" },
|
||||
{ "type": "test", "release": false }
|
||||
]
|
||||
}
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user