Skip to content

Commit 135b809

Browse files
authored
feat: move to reusable workflows (#297)
- [x] auto-labeler - add major,minor,patch labels to auto-labeler - [x] pr-title - [x] release - [x] delete major-version-updater action, we are not using it - [x] update release-drafter template to use $OWNER/$REPOSITORY Signed-off-by: jmeridth <[email protected]>
1 parent 3189dd3 commit 135b809

File tree

5 files changed

+47
-148
lines changed

5 files changed

+47
-148
lines changed

.github/release-drafter.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ template: |
55
# Changelog
66
$CHANGES
77
8-
See details of [all code changes](https://github.com/github/evergreen/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION) since previous release
8+
See details of [all code changes](https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION) since previous release
99
1010
categories:
1111
- title: "🚀 Features"
@@ -32,14 +32,17 @@ version-resolver:
3232
major:
3333
labels:
3434
- "breaking"
35+
- "major"
3536
minor:
3637
labels:
3738
- "enhancement"
3839
- "fix"
40+
- "minor"
3941
patch:
4042
labels:
4143
- "documentation"
4244
- "maintenance"
45+
- "patch"
4346
default: patch
4447
autolabeler:
4548
- label: "automation"

.github/workflows/auto-labeler.yml

+5-11
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
11
---
22
name: Auto Labeler
3-
43
on:
54
# pull_request_target event is required for autolabeler to support all PRs including forks
65
pull_request_target:
76
types: [opened, reopened, edited, synchronize]
8-
97
permissions:
108
contents: read
11-
129
jobs:
1310
main:
1411
permissions:
1512
contents: write
1613
pull-requests: write
17-
name: Auto label pull requests
18-
runs-on: ubuntu-latest
19-
steps:
20-
- uses: release-drafter/release-drafter@3f0f87098bd6b5c5b9a36d49c41d998ea58f9348
21-
env:
22-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23-
with:
24-
config-name: release-drafter.yml
14+
uses: jmeridth/reusable-workflows/.github/workflows/auto-labeler.yaml@1406afbf7a795f706f04644059cecbb3b2f0c1a0
15+
with:
16+
config-name: release-drafter.yml
17+
secrets:
18+
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/major-version-updater.yml

-33
This file was deleted.

.github/workflows/pr-title.yml

+5-26
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,17 @@
11
## Reference: https://github.com/amannn/action-semantic-pull-request
22
---
33
name: "Lint PR Title"
4-
54
on:
65
pull_request_target:
7-
types: [opened, edited, edited, synchronize]
8-
6+
types: [opened, reopened, edited, synchronize]
97
permissions:
108
contents: read
11-
129
jobs:
1310
main:
1411
permissions:
12+
contents: read
1513
pull-requests: read
1614
statuses: write
17-
name: Validate PR title
18-
runs-on: ubuntu-latest
19-
steps:
20-
- uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017
21-
env:
22-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23-
with:
24-
# Configure which types are allowed (newline-delimited).
25-
# From: https://github.com/commitizen/conventional-commit-types/blob/master/index.json
26-
# listing all below
27-
types: |
28-
build
29-
chore
30-
ci
31-
docs
32-
feat
33-
fix
34-
perf
35-
refactor
36-
revert
37-
style
38-
test
15+
uses: jmeridth/reusable-workflows/.github/workflows/pr-title.yaml@1406afbf7a795f706f04644059cecbb3b2f0c1a0
16+
secrets:
17+
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

+33-77
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,50 @@
11
---
22
name: Release
3-
43
on:
54
workflow_dispatch:
65
pull_request_target:
76
types: [closed]
87
branches: [main]
9-
108
permissions:
119
contents: read
12-
1310
jobs:
14-
create_release:
15-
# release if
16-
# manual deployment OR
17-
# merged to main and labelled with release labels
18-
if: |
19-
(github.event_name == 'workflow_dispatch') ||
20-
(github.event.pull_request.merged == true &&
21-
(contains(github.event.pull_request.labels.*.name, 'breaking') ||
22-
contains(github.event.pull_request.labels.*.name, 'feature') ||
23-
contains(github.event.pull_request.labels.*.name, 'vuln') ||
24-
contains(github.event.pull_request.labels.*.name, 'release')))
25-
outputs:
26-
full-tag: ${{ steps.release-drafter.outputs.tag_name }}
27-
short-tag: ${{ steps.get_tag_name.outputs.SHORT_TAG }}
28-
body: ${{ steps.release-drafter.outputs.body }}
29-
runs-on: ubuntu-latest
11+
release:
3012
permissions:
3113
contents: write
3214
pull-requests: read
33-
steps:
34-
- uses: release-drafter/release-drafter@3f0f87098bd6b5c5b9a36d49c41d998ea58f9348
35-
id: release-drafter
36-
env:
37-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38-
with:
39-
config-name: release-drafter.yml
40-
publish: true
41-
- name: Get the short tag
42-
id: get_tag_name
43-
run: |
44-
short_tag=$(echo ${{ steps.release-drafter.outputs.tag_name }} | cut -d. -f1)
45-
echo "SHORT_TAG=$short_tag" >> "$GITHUB_OUTPUT"
46-
create_action_images:
47-
needs: create_release
48-
runs-on: ubuntu-latest
15+
uses: jmeridth/reusable-workflows/.github/workflows/release.yaml@53a9c808122ffaae9af948f72139fb4bd44ab74c
16+
with:
17+
publish: true
18+
release-config-name: release-drafter.yml
19+
secrets:
20+
github-token: ${{ secrets.GITHUB_TOKEN }}
21+
release_image:
22+
needs: release
4923
permissions:
24+
contents: write
25+
discussions: write
5026
packages: write
51-
env:
52-
REGISTRY: ghcr.io
53-
IMAGE_NAME: ${{ github.repository }}
54-
steps:
55-
- name: Set up QEMU
56-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf
57-
- name: Set up Docker Buildx
58-
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5
59-
- name: Log in to the Container registry
60-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
61-
with:
62-
registry: ${{ env.REGISTRY }}
63-
username: ${{ github.actor }}
64-
password: ${{ secrets.GITHUB_TOKEN }}
65-
- uses: actions/[email protected]
66-
- name: Push Docker Image
67-
if: ${{ success() }}
68-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
69-
with:
70-
context: .
71-
file: ./Dockerfile
72-
push: true
73-
tags: |
74-
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
75-
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ needs.create_release.outputs.full-tag }}
76-
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ needs.create_release.outputs.short-tag }}
77-
platforms: linux/amd64,linux/arm64
78-
provenance: false
79-
sbom: false
80-
create_discussion:
81-
needs: create_release
82-
runs-on: ubuntu-latest
27+
pull-requests: read
28+
uses: jmeridth/reusable-workflows/.github/workflows/release-image.yaml@53a9c808122ffaae9af948f72139fb4bd44ab74c
29+
with:
30+
image-name: ${{ github.repository }}
31+
full-tag: ${{ needs.release.outputs.full-tag }}
32+
short-tag: ${{ needs.release.outputs.short-tag }}
33+
secrets:
34+
github-token: ${{ secrets.GITHUB_TOKEN }}
35+
image-registry: ghcr.io
36+
image-registry-username: ${{ github.actor }}
37+
image-registry-password: ${{ secrets.GITHUB_TOKEN }}
38+
release_discussion:
39+
needs: release
8340
permissions:
41+
contents: read
8442
discussions: write
85-
steps:
86-
- name: Create an announcement discussion for release
87-
uses: abirismyname/create-discussion@6e6ef67e5eeb042343ef8b3d8d0f5d545cbdf024
88-
env:
89-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
90-
with:
91-
title: ${{ needs.create_release.outputs.full-tag }}
92-
body: ${{ needs.create_release.outputs.body }}
93-
repository-id: ${{ secrets.RELEASE_DISCUSSION_REPOSITORY_ID }}
94-
category-id: ${{ secrets.RELEASE_DISCUSSION_CATEGORY_ID }}
43+
uses: jmeridth/reusable-workflows/.github/workflows/release-discussion.yaml@53a9c808122ffaae9af948f72139fb4bd44ab74c
44+
with:
45+
full-tag: ${{ needs.release.outputs.full-tag }}
46+
body: ${{ needs.release.outputs.body }}
47+
secrets:
48+
github-token: ${{ secrets.GITHUB_TOKEN }}
49+
discussion-repository-id: ${{ secrets.RELEASE_DISCUSSION_REPOSITORY_ID }}
50+
discussion-category-id: ${{ secrets.RELEASE_DISCUSSION_CATEGORY_ID }}

0 commit comments

Comments
 (0)