Skip to content

Commit aadbf0f

Browse files
add release and labeler
1 parent 3ee49b2 commit aadbf0f

File tree

5 files changed

+49
-3
lines changed

5 files changed

+49
-3
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ updates:
1313
- "hmmachadocx"
1414

1515
- package-ecosystem: "github-actions"
16-
# Workflow files stored in the
17-
# default location of `.github/workflows`
1816
directory: "/"
1917
schedule:
2018
interval: "daily"

.github/pr-labeler.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
feature: ['feature/*', 'feat/*']
2+
bug: ['fix/*', 'bug/*']
3+
dependencies: dependabot/*

.github/release.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# .github/release.yml
2+
3+
changelog:
4+
exclude:
5+
labels:
6+
- ignore
7+
categories:
8+
- title: Bug Fixes 🐛
9+
labels:
10+
- bug
11+
- bugs
12+
- fix
13+
- fixes
14+
- title: New Features 🚀
15+
labels:
16+
- feature
17+
- features
18+
- title: Checkmarx One Updates 🛠
19+
labels:
20+
- cxone
21+
- title: Other Changes
22+
labels:
23+
- "*"
24+
exclude:
25+
labels:
26+
- dependencies

.github/workflows/pr-label.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: PR Labeler
2+
on:
3+
pull_request:
4+
types: [opened]
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
pr-labeler:
11+
permissions:
12+
pull-requests: write # for TimonVS/pr-labeler-action to add labels in PR
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: TimonVS/pr-labeler-action@v4
16+
with:
17+
configuration-path: .github/pr-labeler.yml # optional, .github/pr-labeler.yml is the default value
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/update-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ jobs:
4646
Auto-generated by [create-pull-request][2]
4747
4848
[1]: https://github.com/Checkmarx/checkmarx-ast-cli
49-
labels: dependencies, automated pr
49+
labels: cxone
5050
branch: feature/update_cli

0 commit comments

Comments
 (0)