Skip to content

Commit f6e37d3

Browse files
authored
Merge pull request #120 from ASFHyP3/develop
Release v0.5.2
2 parents a25f6dc + c755e8a commit f6e37d3

File tree

16 files changed

+59
-32
lines changed

16 files changed

+59
-32
lines changed

.github/workflows/changelog.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@ on:
1313

1414
jobs:
1515
call-changelog-check-workflow:
16-
uses: ASFHyP3/actions/.github/workflows/[email protected]
16+
uses: ASFHyP3/actions/.github/workflows/[email protected]
17+
permissions:
18+
contents: read

.github/workflows/create-jira-issue.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ on:
66

77
jobs:
88
call-create-jira-issue-workflow:
9-
uses: ASFHyP3/actions/.github/workflows/[email protected]
9+
uses: ASFHyP3/actions/.github/workflows/[email protected]
10+
permissions:
11+
issues: write
1012
secrets:
1113
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
1214
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}

.github/workflows/labeled-pr.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@ on:
1212

1313
jobs:
1414
call-labeled-pr-check-workflow:
15-
uses: ASFHyP3/actions/.github/workflows/[email protected]
15+
uses: ASFHyP3/actions/.github/workflows/[email protected]
16+
permissions:
17+
pull-requests: read

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ on:
77

88
jobs:
99
call-release-workflow:
10-
uses: ASFHyP3/actions/.github/workflows/[email protected]
10+
uses: ASFHyP3/actions/.github/workflows/[email protected]
11+
permissions: {}
1112
with:
1213
release_prefix: HyP3 Cookiecutter
1314
secrets:

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ on: push
44

55
jobs:
66
call-secrets-analysis-workflow:
7-
uses: ASFHyP3/actions/.github/workflows/[email protected]
7+
uses: ASFHyP3/actions/.github/workflows/[email protected]
8+
permissions:
9+
contents: read

.github/workflows/tag-version.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77

88
jobs:
99
call-bump-version-workflow:
10-
uses: ASFHyP3/actions/.github/workflows/[email protected]
10+
uses: ASFHyP3/actions/.github/workflows/[email protected]
11+
permissions: {}
1112
secrets:
1213
USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/)
77
and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
10+
## [0.5.2]
11+
12+
### Changed
13+
- The `test-and-build.yml` workflow has been split into a `test.yml` workflow and a `build.yml` workflow.
14+
915
## [0.5.1]
1016

1117
### Added
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,20 @@
1-
name: Test and build
1+
name: Build
22

33
on:
44
push:
55
branches:
6-
- main
76
- develop
7+
tags:
8+
- 'v*'
89
pull_request:
910
branches:
1011
- main
1112
- develop
1213

1314
jobs:
14-
call-pytest-workflow:
15-
# Docs: https://github.com/ASFHyP3/actions
16-
uses: ASFHyP3/actions/.github/workflows/[email protected]
17-
permissions:
18-
contents: read
19-
with:
20-
local_package_name: {{ cookiecutter.__package_name }}
21-
python_versions: >-
22-
["3.10", "3.11", "3.12", "3.13"]
23-
2415
call-version-info-workflow:
2516
# Docs: https://github.com/ASFHyP3/actions
26-
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.18.1
17+
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.20.0
2718
permissions:
2819
contents: read
2920
with:
@@ -32,14 +23,12 @@ jobs:
3223
call-docker-ghcr-workflow:
3324
needs: call-version-info-workflow
3425
# Docs: https://github.com/ASFHyP3/actions
35-
uses: ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.18.1
26+
uses: ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.20.0
3627
permissions:
3728
contents: read
3829
packages: write
3930
with:
4031
version_tag: {{ '${{ needs.call-version-info-workflow.outputs.version_tag }}' }}
41-
release_branch: main
42-
develop_branch: develop
4332
user: {{ '${{ github.actor }}' }}
4433
secrets:
4534
USER_TOKEN: {{ '${{ secrets.GITHUB_TOKEN }}' }}

{{cookiecutter.__project_name}}/.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ on:
1414
jobs:
1515
call-changelog-check-workflow:
1616
# Docs: https://github.com/ASFHyP3/actions
17-
uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.18.1
17+
uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.20.0
1818
permissions:
1919
contents: read

{{cookiecutter.__project_name}}/.github/workflows/labeled-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ on:
1313
jobs:
1414
call-labeled-pr-check-workflow:
1515
# Docs: https://github.com/ASFHyP3/actions
16-
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.18.1
16+
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.20.0
1717
permissions:
1818
pull-requests: read

0 commit comments

Comments
 (0)