Skip to content

Commit daff436

Browse files
feat: use shared workflows (#115)
* feat: use shared workflows Signed-off-by: Dario Faccin <[email protected]> * chore: update lint config Signed-off-by: Dario Faccin <[email protected]> * fix: remove release image GHA Signed-off-by: Dario Faccin <[email protected]> * Revert changes to `.golangci.yml` Signed-off-by: Arrobo, Gabriel <[email protected]> --------- Signed-off-by: Dario Faccin <[email protected]> Signed-off-by: Arrobo, Gabriel <[email protected]> Co-authored-by: Arrobo, Gabriel <[email protected]>
1 parent 2c1f465 commit daff436

File tree

5 files changed

+35
-197
lines changed

5 files changed

+35
-197
lines changed

.github/dependabot.yml

-8
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,6 @@
55
version: 2
66
updates:
77

8-
- package-ecosystem: "github-actions"
9-
directory: "/"
10-
schedule:
11-
interval: "weekly"
12-
day: "wednesday"
13-
time: "21:00"
14-
timezone: "America/Los_Angeles"
15-
168
- package-ecosystem: "gomod"
179
directory: "/"
1810
schedule:

.github/workflows/main.yml

+21-63
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# SPDX-License-Identifier: Apache-2.0
22
# Copyright 2024 Intel Corporation
3-
4-
name: Main workflow
3+
# Copyright 2025 Canonical Ltd.
54

65
on:
76
pull_request:
@@ -13,72 +12,31 @@ on:
1312

1413
jobs:
1514
build:
16-
runs-on: ubuntu-latest
17-
steps:
18-
- uses: actions/checkout@v4
19-
20-
- uses: actions/setup-go@v5
21-
with:
22-
go-version-file: 'go.mod'
23-
24-
- name: Build
25-
run: go build ./...
15+
uses: omec-project/.github/.github/workflows/build.yml@main
16+
with:
17+
branch_name: ${{ github.ref }}
2618

27-
staticcheck:
28-
runs-on: ubuntu-latest
29-
steps:
30-
- uses: actions/checkout@v4
31-
32-
- uses: WillAbides/[email protected]
33-
with:
34-
go-version-file: 'go.mod'
35-
36-
- uses: dominikh/[email protected]
37-
with:
38-
version: latest
39-
install-go: false
19+
static-analysis:
20+
uses: omec-project/.github/.github/workflows/static-analysis.yml@main
21+
with:
22+
branch_name: ${{ github.ref }}
4023

4124
lint:
42-
runs-on: ubuntu-latest
43-
steps:
44-
- uses: actions/checkout@v4
45-
46-
- uses: actions/setup-go@v5
47-
with:
48-
go-version-file: 'go.mod'
49-
50-
- name: golangci-lint
51-
uses: golangci/[email protected]
52-
with:
53-
version: latest
54-
args: -v --config ./.golangci.yml
25+
uses: omec-project/.github/.github/workflows/lint.yml@main
26+
with:
27+
branch_name: ${{ github.ref }}
5528

5629
license-check:
57-
runs-on: ubuntu-latest
58-
steps:
59-
- uses: actions/checkout@v4
60-
61-
- name: reuse lint
62-
uses: fsfe/reuse-action@v5
63-
64-
fossa-check:
65-
runs-on: ubuntu-latest
66-
steps:
67-
- uses: actions/checkout@v4
30+
uses: omec-project/.github/.github/workflows/license-check.yml@main
31+
with:
32+
branch_name: ${{ github.ref }}
6833

69-
- name: FOSSA scan
70-
uses: fossa-contrib/fossa-action@v3
71-
with:
72-
fossa-api-key: 0c3bbcdf20e157bbd487dae173751b28
34+
fossa-scan:
35+
uses: omec-project/.github/.github/workflows/fossa-scan.yml@main
36+
with:
37+
branch_name: ${{ github.ref }}
7338

7439
unit-tests:
75-
runs-on: ubuntu-latest
76-
steps:
77-
- uses: actions/checkout@v4
78-
79-
- uses: actions/setup-go@v5
80-
with:
81-
go-version-file: 'go.mod'
82-
83-
- name: Unit tests
84-
run: go test ./...
40+
uses: omec-project/.github/.github/workflows/unit-test.yml@main
41+
with:
42+
branch_name: ${{ github.ref }}

.github/workflows/push.yaml

+6-110
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: Apache-2.0
22
# Copyright 2024 Intel Corporation
3-
name: GitHub release
3+
# Copyright 2025 Canonical Ltd.
44

55
on:
66
push:
@@ -10,119 +10,15 @@ on:
1010
- v*
1111

1212
jobs:
13-
# CAUTION: Other actions depend on this name "tag-github"
1413
tag-github:
15-
runs-on: ubuntu-latest
16-
if: github.repository_owner == 'omec-project'
17-
outputs:
18-
changed: ${{ steps.version-change.outputs.changed }}
19-
version: ${{ steps.version-change.outputs.version }}
20-
release_branch: ${{ steps.version-change.outputs.release_branch }}
21-
version_branch: ${{ steps.version-change.outputs.version_branch }}
22-
steps:
23-
- uses: actions/checkout@v4
24-
with:
25-
fetch-depth: 0
26-
27-
- name: Get changes
28-
id: version-file
29-
run: |
30-
if git diff --name-only ${{ github.event.before }} ${{ github.event.after }} | grep VERSION; then
31-
echo "changed=true" >> $GITHUB_OUTPUT
32-
version_before=$(git show ${{ github.event.before }}:VERSION)
33-
echo "version_before=$version_before" >> $GITHUB_OUTPUT
34-
else
35-
echo "VERSION file was not changed"
36-
fi
37-
38-
- name: Validate change in version file
39-
id: version-change
40-
if: steps.version-file.outputs.changed == 'true'
41-
run: |
42-
version=$(cat VERSION)
43-
version_before_full=${{ steps.version-file.outputs.version_before }}
44-
version_before=${version_before_full::-4}
45-
echo "version=$version"
46-
echo "version_before=$version_before"
47-
validate="^[0-9]+\.[0-9]+\.[0-9]+$"
48-
if [[ $version =~ $validate ]]; then
49-
echo "changed=true" >> $GITHUB_OUTPUT
50-
echo "version=$version" >> $GITHUB_OUTPUT
51-
else
52-
echo "Version change not for release"
53-
fi
54-
if [[ $version_before =~ $validate ]]; then
55-
IFS='.' read -r major minor patch <<< "$version"
56-
IFS='.' read -r major_b minor_b patch_b <<< "$version_before"
57-
if [[ "$major" -ne "$major_b" ]] || [[ "$minor" -ne "$minor_b" ]]; then
58-
version_branch="$major_b.$minor_b"
59-
echo "release_branch=true" >> $GITHUB_OUTPUT
60-
echo "version_branch=$version_branch" >> $GITHUB_OUTPUT
61-
fi
62-
else
63-
echo "Version change not for branch release"
64-
fi
65-
66-
- name: Create release using REST API
67-
if: steps.version-change.outputs.changed == 'true'
68-
run: |
69-
curl -L \
70-
-X POST \
71-
-H "Accept: application/vnd.github+json" \
72-
-H "Authorization: Bearer ${{ secrets.GH_OMEC_PAT }}" \
73-
-H "X-GitHub-Api-Version: 2022-11-28" \
74-
https://api.github.com/repos/${{ github.repository }}/releases \
75-
-d '{
76-
"tag_name": "v${{ steps.version-change.outputs.version }}",
77-
"target_commitish": "${{ github.event.repository.default_branch }}",
78-
"name": "v${{ steps.version-change.outputs.version }}",
79-
"draft": false,
80-
"prerelease": false,
81-
"generate_release_notes": true
82-
}'
14+
uses: omec-project/.github/.github/workflows/tag-github.yml@main
8315

8416
update-version:
85-
runs-on: ubuntu-latest
8617
needs: tag-github
87-
if: needs.tag-github.outputs.changed == 'true'
88-
steps:
89-
- uses: actions/checkout@v4
90-
91-
- name: Increment version
92-
run: |
93-
version=${{ needs.tag-github.outputs.version }}
94-
IFS='.' read -r major minor patch <<< "$version"
95-
patch_update=$((patch+1))
96-
NEW_VERSION="$major.$minor.$patch_update-dev"
97-
echo $NEW_VERSION > VERSION
98-
echo "Updated version: $NEW_VERSION"
99-
100-
- name: Create Pull Request
101-
uses: peter-evans/create-pull-request@v7
102-
with:
103-
token: ${{ secrets.GH_OMEC_PAT }}
104-
commit-message: Update version
105-
committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
106-
author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com>
107-
signoff: true
108-
branch: version-update
109-
delete-branch: true
110-
title: Update version
111-
body: |
112-
Update VERSION file
113-
add-paths: |
114-
VERSION
18+
uses: omec-project/.github/.github/workflows/update-version.yml@main
19+
secrets: inherit
11520

11621
branch-release:
117-
runs-on: ubuntu-latest
11822
needs: tag-github
119-
if: (needs.tag-github.outputs.changed == 'true') && (needs.tag-github.outputs.release_branch == 'true')
120-
env:
121-
GITHUB_TOKEN: ${{ secrets.GH_OMEC_PAT }}
122-
steps:
123-
- uses: actions/checkout@v4
124-
125-
- uses: peterjgrainger/[email protected]
126-
with:
127-
branch: "rel-${{ needs.tag-github.outputs.version_branch }}"
128-
sha: '${{ github.event.pull_request.head.sha }}'
23+
uses: omec-project/.github/.github/workflows/branch-release.yml@main
24+
secrets: inherit

.github/workflows/stale.yml

+6-16
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,15 @@
11
# SPDX-License-Identifier: Apache-2.0
22
# Copyright 2024 Intel Corporation
3-
name: Stale issue/pr
3+
# Copyright 2025 Canonical Ltd.
44

55
on:
66
schedule:
77
- cron: "0 0 * * *"
88

9-
env:
10-
DAYS_BEFORE_STALE: 120
11-
DAYS_BEFORE_CLOSE: 15
12-
139
jobs:
1410
stale:
15-
runs-on: ubuntu-latest
16-
steps:
17-
- uses: actions/stale@v9
18-
with:
19-
repo-token: ${{ secrets.GITHUB_TOKEN }}
20-
stale-issue-message: 'This issue has been stale for ${{ env.DAYS_BEFORE_STALE }} days and will be closed in ${{ env.DAYS_BEFORE_CLOSE }} days. Comment to keep it open.'
21-
stale-pr-message: 'This pull request has been stale for ${{ env.DAYS_BEFORE_STALE }} days and will be closed in ${{ env.DAYS_BEFORE_CLOSE }} days. Comment to keep it open.'
22-
stale-issue-label: 'stale/issue'
23-
stale-pr-label: 'stale/pr'
24-
days-before-stale: ${{ env.DAYS_BEFORE_STALE }}
25-
days-before-close: ${{ env.DAYS_BEFORE_CLOSE }}
11+
uses: omec-project/.github/.github/workflows/stale-issue.yml@main
12+
with:
13+
days_before_stale: 120
14+
days_before_close: 15
15+
secrets: inherit

.golangci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ output:
1616
linters:
1717
enable:
1818
- asciicheck
19+
- bodyclose
1920
- dogsled
2021
- goconst
2122
- godox
2223
- gomodguard
24+
- govet
2325
- misspell
2426
- nakedret
2527
- noctx

0 commit comments

Comments
 (0)