Skip to content

Commit 9e24890

Browse files
authored
chore: Fix release (#6)
1 parent 4fceda6 commit 9e24890

File tree

5 files changed

+24
-13
lines changed

5 files changed

+24
-13
lines changed

.github/release.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
1-
# DONT EDIT. This file is synced from https://github.com/cloudquery/.github/.github
21
changelog:
32
exclude:
43
labels:
54
- ignore-for-release
65
categories:
7-
- title: Breaking Changes
6+
- title: Breaking Changes 🛠
87
labels:
98
- breaking
10-
- title: Added
9+
- title: Added 🎉
1110
labels:
12-
- enhancement
13-
- docs
1411
- feat
15-
- title: Fixed
12+
- title: Fixed 🪳
1613
labels:
1714
- fix
18-
- title: Other Changes
15+
- title: Other Changes 📖
1916
labels:
2017
- refactor
2118
- chore
22-
- ci
23-
- test
19+
- test

.github/workflows/add_tags.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Warning, do not check out untrusted code with
2+
# the pull_request_target event.
3+
# the current workflow IS safe as long as you dont checkout untrusted code
4+
# https://nathandavison.com/blog/github-actions-and-the-threat-of-malicious-pull-requests
5+
on:
6+
pull_request_target:
7+
types: [opened, edited]
8+
name: conventional-release-labels
9+
jobs:
10+
label:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: bcoe/conventional-release-labels@v1
14+
with:
15+
type_labels: '{ "feat": "feat", "fix": "fix", "chore": "chore", "refactor": "refactor", "test": "test", "breaking": "breaking" }'

.github/workflows/lint_golang.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# DONT EDIT. This file is synced from https://github.com/cloudquery/.github/.github
21
name: Lint
32
on:
43
push:

.github/workflows/pr_title.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# DONT EDIT. This file is synced from https://github.com/cloudquery/.github/.github
21
name: "Validate PR title"
32

43
on:

.github/workflows/release-pr.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# DONT EDIT. This file is synced from https://github.com/cloudquery/.github/.github
21
name: release-please
32
on:
43
push:
@@ -13,11 +12,14 @@ jobs:
1312
id: release
1413
with:
1514
release-type: go
16-
package-name: cq-provider-sdk
15+
package-name: plugin-sdk
1716
token: ${{ secrets.GH_CQ_BOT }}
1817
pull-request-title-pattern: "chore${scope}: Release${component} v${version}"
1918
bump-minor-pre-major: true
2019
bump-patch-for-minor-pre-major: true
20+
changelog-notes-type: github
21+
# TODO: remove after we merge the first release PR
22+
last-release-sha: ccf6ff365b6ac27eaf0bb3f7ea0be68a74935fae
2123
- name: Parse semver string
2224
if: steps.release.outputs.release_created
2325
id: semver_parser

0 commit comments

Comments
 (0)