Skip to content

Commit 4d016b9

Browse files
authored
Merge pull request #9 from getindata/v1-release
feat: Release v1 version
2 parents 57e8c63 + 1d481b0 commit 4d016b9

File tree

3 files changed

+3
-23
lines changed

3 files changed

+3
-23
lines changed

.github/workflows/_self-gh-create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Create new release
1+
name: Create new release with changelog and partial semver tags
22

33
permissions:
44
contents: write

.github/workflows/gh-partial-semver-tags.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
]
4343

4444
steps:
45-
- name: Tag Repo
45+
- name: Tag repo
4646
uses: richardsimko/update-tag@v1
4747
with:
4848
tag_name: ${{ matrix.tags }}

.github/workflows/gh-validate-pr-title.yml

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,17 @@ permissions:
55
statuses: write
66

77
on:
8-
- workflow_call
8+
workflow_call:
99

1010
jobs:
1111
main:
1212
name: Validate PR title
1313
runs-on: ubuntu-latest
1414
steps:
15-
# Please look up the latest version from
16-
# https://github.com/amannn/action-semantic-pull-request/releases
1715
- uses: amannn/[email protected]
1816
env:
1917
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2018
with:
21-
# Configure which types are allowed.
22-
# Default: https://github.com/commitizen/conventional-commit-types
2319
types: |
2420
feat
2521
fix
@@ -29,22 +25,6 @@ jobs:
2925
test
3026
ci
3127
chore
32-
# Configure that a scope must always be provided.
3328
requireScope: false
34-
# Configure additional validation for the subject based on a regex.
35-
# This example ensures the subject starts with an uppercase character.
3629
subjectPattern: ^[A-Z].+$
37-
# If `subjectPattern` is configured, you can use this property to override
38-
# the default error message that is shown when the pattern doesn't match.
39-
# The variables `subject` and `title` can be used within the message.
40-
subjectPatternError: |
41-
The subject "{subject}" found in the pull request title "{title}"
42-
didn't match the configured pattern. Please ensure that the subject
43-
starts with an uppercase character.
44-
# For work-in-progress PRs you can typically use draft pull requests
45-
# from Github. However, private repositories on the free plan don't have
46-
# this option and therefore this action allows you to opt-in to using the
47-
# special "[WIP]" prefix to indicate this state. This will avoid the
48-
# validation of the PR title and the pull request checks remain pending.
49-
# Note that a second check will be reported if this is enabled.
5030
wip: true

0 commit comments

Comments
 (0)