-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from ASFHyP3/develop
Release v0.7.0
- Loading branch information
Showing
6 changed files
with
31 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ on: | |
|
||
jobs: | ||
call-bump-version-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.7.0 | ||
with: | ||
user: tools-bot # Optional; default shown | ||
email: [email protected] # Optional; default shown | ||
|
@@ -57,7 +57,7 @@ on: | |
jobs: | ||
call-changelog-check-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.7.0 | ||
secrets: | ||
USER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
``` | ||
|
@@ -87,13 +87,13 @@ on: | |
jobs: | ||
call-version-info-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.7.0 | ||
with: | ||
conda_env_name: hyp3-plugin | ||
call-docker-ecr-workflow: | ||
needs: call-version-info-workflow | ||
uses: ASFHyP3/actions/.github/workflows/reusable-docker-ecr.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-docker-ecr.yml@v0.7.0 | ||
with: | ||
version_tag: ${{ needs.call-version-info-workflow.outputs.version_tag }} | ||
ecr_registry: 845172464411.dkr.ecr.us-west-2.amazonaws.com | ||
|
@@ -128,13 +128,13 @@ on: | |
jobs: | ||
call-version-info-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.7.0 | ||
with: | ||
conda_env_name: hyp3-plugin | ||
call-docker-ghcr-workflow: | ||
needs: call-version-info-workflow | ||
uses: ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.7.0 | ||
with: | ||
version_tag: ${{ needs.call-version-info-workflow.outputs.version_tag }} | ||
release_branch: main # Optional; default shown | ||
|
@@ -155,7 +155,7 @@ on: push | |
jobs: | ||
call-flake8-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/reusable-flake8.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-flake8.yml@v0.7.0 | ||
with: | ||
local_package_names: hyp3_plugin # Required; comma-seperated list of names that should be considered local to your application | ||
excludes: hyp3_plugin/ugly.py # Optional; comma-separated list of glob patterns to exclude from checks | ||
|
@@ -183,7 +183,7 @@ on: | |
jobs: | ||
call-git-object-name-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/reusable-git-object-name.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-git-object-name.yml@v0.7.0 | ||
echo-git-object-name-outputs: | ||
needs: call-git-object-name-workflow | ||
|
@@ -213,7 +213,7 @@ on: | |
jobs: | ||
call-labeled-pr-check-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.7.0 | ||
``` | ||
to ensure a release label is included on any PR to `main`. | ||
|
||
|
@@ -237,10 +237,9 @@ on: | |
jobs: | ||
call-pytest-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.7.0 | ||
with: | ||
local_package_name: hyp3_plugin # Required; package to produce a coverage report for | ||
conda_env_name: hyp3-plugin # Required; conda environment name to activate | ||
# Optional; default shown | ||
python_versions: >- | ||
["3.8", "3.9", "3.10"] | ||
|
@@ -267,7 +266,7 @@ on: | |
jobs: | ||
call-release-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.7.0 | ||
with: | ||
release_prefix: HyP3-CI | ||
release_branch: main # Optional; default shown | ||
|
@@ -294,7 +293,7 @@ on: | |
jobs: | ||
call-release-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/reusable-relese-checklist-comment.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-relese-checklist-comment.yml@v0.7.0 | ||
with: | ||
# optional; example shown | ||
additional_developer_items: '- [ ] If the step function code has changed, have you drained the job queue before merging?' | ||
|
@@ -321,7 +320,7 @@ on: push | |
jobs: | ||
call-secrets-analysis-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.7.0 | ||
``` | ||
to scan every push for secrets. | ||
|
||
|
@@ -347,9 +346,8 @@ on: | |
jobs: | ||
call-version-info-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.6.0 | ||
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.7.0 | ||
with: | ||
conda_env_name: hyp3-plugin # Required; conda environment name to activate | ||
python_version: '3.9' # Optional; default shown | ||
echo-version-info-outputs: | ||
|