Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update example versions for latest release #59

Merged
merged 6 commits into from
Apr 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:

jobs:
call-bump-version-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.7.1
with:
user: tools-bot # Optional; default shown
email: UAF-asf-apd@alaska.edu # Optional; default shown
Expand Down Expand Up @@ -57,7 +57,7 @@ on:

jobs:
call-changelog-check-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.7.1
secrets:
USER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```
Expand Down Expand Up @@ -87,13 +87,13 @@ on:

jobs:
call-version-info-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.7.1
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.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-docker-ecr.yml@v0.7.1
with:
version_tag: ${{ needs.call-version-info-workflow.outputs.version_tag }}
ecr_registry: 845172464411.dkr.ecr.us-west-2.amazonaws.com
Expand Down Expand Up @@ -128,20 +128,20 @@ on:

jobs:
call-version-info-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.7.1
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.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.7.1
with:
version_tag: ${{ needs.call-version-info-workflow.outputs.version_tag }}
user: ${{ github.actor }}
release_branch: main # Optional; default shown
develop_branch: develop # Optional; default shown
user: tools-bot # Optional; default shown
secrets:
USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }}
USER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```

### [`reusable-flake8.yml`](./.github/workflows/reusable-flake8.yml)
Expand All @@ -155,7 +155,7 @@ on: push

jobs:
call-flake8-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-flake8.yml@v0.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-flake8.yml@v0.7.1
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
Expand Down Expand Up @@ -183,7 +183,7 @@ on:

jobs:
call-git-object-name-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-git-object-name.yml@v0.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-git-object-name.yml@v0.7.1

echo-git-object-name-outputs:
needs: call-git-object-name-workflow
Expand Down Expand Up @@ -213,7 +213,7 @@ on:

jobs:
call-labeled-pr-check-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.7.1
```
to ensure a release label is included on any PR to `main`.

Expand All @@ -237,7 +237,7 @@ on:

jobs:
call-pytest-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.7.1
with:
local_package_name: hyp3_plugin # Required; package to produce a coverage report for
# Optional; default shown
Expand Down Expand Up @@ -266,7 +266,7 @@ on:

jobs:
call-release-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.7.1
with:
release_prefix: HyP3-CI
release_branch: main # Optional; default shown
Expand Down Expand Up @@ -295,7 +295,7 @@ on:

jobs:
call-release-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.7.1
permissions:
pull-requests: write
with:
Expand Down Expand Up @@ -324,7 +324,7 @@ on: push

jobs:
call-secrets-analysis-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.7.1
```
to scan every push for secrets.

Expand All @@ -350,7 +350,7 @@ on:

jobs:
call-version-info-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.7.0
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.7.1
with:
python_version: '3.9' # Optional; default shown

Expand Down