Skip to content

Commit 1a8d412

Browse files
authored
chore(ci): Fix CI warns (#9)
1 parent df38523 commit 1a8d412

File tree

3 files changed

+22
-20
lines changed

3 files changed

+22
-20
lines changed

.github/workflows/commit-check.yml

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
name: Conventional Commit Check
22

33
on:
4-
pull_request:
5-
types: [opened, synchronize, reopened, edited]
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
- reopened
10+
611

712
jobs:
813
check-commits:
@@ -19,22 +24,20 @@ jobs:
1924
env:
2025
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2126
with:
22-
types:
23-
- feat
24-
- fix
25-
- docs
26-
- style
27-
- refactor
28-
- perf
29-
- test
30-
- build
31-
- ci
32-
- chore
33-
- revert
27+
types: |
28+
fix
29+
feat
30+
docs
31+
style
32+
refactor
33+
perf
34+
test
35+
build
36+
ci
37+
chore
38+
revert
3439
requireScope: false
35-
subjectPattern: ^[A-Z].*$
40+
subjectPattern: ^(?![A-Z]).+$
3641
subjectPatternError: |
3742
The subject must start with a capital letter.
38-
wip: true
3943
validateSingleCommit: true
40-
validateSingleCommitMatchesPrTitle: true

.github/workflows/release-please.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
with:
2626
release-type: node
2727
token: ${{ secrets.RELEASE_PLEASE }}
28-
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false},{"type":"docs","section":"Documentation","hidden":false},{"type":"perf","section":"Performance Improvements","hidden":false}]'
2928

3029
build-and-release:
3130
needs: release-please

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# DXVK Version Manager
22

3-
![Build Status](https://github.com/artmakh/dxvk-version-mananger/workflows/Build%20and%20Release/badge.svg)
3+
![Build Status](https://img.shields.io/github/actions/workflow/status/artmakh/dxvk-version-mananger/release-please.yml)
44
![Release](https://img.shields.io/github/v/release/artmakh/dxvk-version-mananger)
5-
![GitHub License](https://img.shields.io/github/license/artmakh/dxvk-version-mananger)
5+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
66

77
A Windows utility to manage versions of DXVK in installed games.
88

0 commit comments

Comments
 (0)