A collection of GitHub Actions and reusable workflow that are used across the ASFHyP3 organization.
While these workflows are developed to be used broadly, we recommend strict version pinning when using these workflows. They are primarily designed to facilitate ASF Tools Team development and will change as the team evolves.
A collection of reusable workflow, consolidating the duplicated workflows across the ASFHyP3 organization.
Creates a new version tag for a repository based on Pull Request labels using bump2version. Use like:
name: Tag New Version
on:
push:
branches:
- main
jobs:
call-bump-version-workflow:
# For first-time setup, create a v0.0.0 tag as shown here:
# https://github.com/ASFHyP3/actions#reusable-bump-versionyml
uses: ASFHyP3/actions/.github/workflows/[email protected]
with:
user: tools-bot # Optional; default shown
email: [email protected] # Optional; default shown
secrets:
USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }}
To tag a new version on any merge to main
. This workflow uses the optional 'user' and 'email' inputs, and the required
personal access token
USER_TOKEN
to define the user who will be creating and pushing the version tag.
For this workflow to run successfully, there must be an annotated tag for the current version number.
When adding this workflow to a new repo, you should create a v0.0.0
tag by running the following commands,
replacing <commit>
with the hash of the initial commit:
git tag -am 'Marking zeroth release for auto-versioning and CI/CD Tooling' v0.0.0 <commit>
git push --tags
Ensures the changelog has been updated. Use like:
name: Changelog updated?
on:
pull_request:
types:
- opened
- labeled
- unlabeled
- synchronize
branches:
- main
- develop
jobs:
call-changelog-check-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
to ensure the changelog has been updated for any PR to develop
or main
.
Creates a Jira issue that corresponds to the labeled GitHub issue. Use like:
name: Create Jira issue
on:
issues:
types: [labeled]
jobs:
call-create-jira-issue-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
secrets:
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
JIRA_PROJECT: ${{ secrets.JIRA_PROJECT }}
JIRA_FIELDS: ${{ secrets.JIRA_FIELDS }}
The JIRA_FIELDS
secret stores additional fields in JSON format. For example, to assign the issue to a particular
sprint, supply the following value:
{"customfield_XXXXX": 42}
where customfield_XXXXX
is the custom field name of the sprint field and 42
is the ID of the particular sprint.
It would seem that the custom field name of the sprint field is not the same across all Jira deployments and projects. Therefore, to determine both the custom field name and the sprint ID, do the following:
- Choose any issue that belongs to the particular sprint and run the
curl
command for the Jira API's Get issue endpoint, supplying the issue key. - Search the JSON response for the name of the sprint. You should find something like the following
(there will be other fields such as
boardId
present in the object, but they are not shown below):"customfield_XXXXX":[{"id":42,"name":"MySprint"}]
Builds a Docker image from the Dockerfile
in the repository root and pushes it to the
Amazon Elastic Container Registry
with the specified version tag, and is best paired with either the reusable-version-info.yml
workflow or the reusable-git-object-name.yml
workflow. This workflow will
additionally push the image with a latest
and test
tag for merges to the release and develop branch, respectively.
Use like:
name: Build
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
call-version-info-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
with:
conda_env_name: hyp3-plugin
call-docker-ecr-workflow:
needs: call-version-info-workflow
uses: ASFHyP3/actions/.github/workflows/[email protected]
with:
version_tag: ${{ needs.call-version-info-workflow.outputs.version_tag }}
ecr_registry: 845172464411.dkr.ecr.us-west-2.amazonaws.com
aws_region: us-west-2 # Optional; default shown
release_branch: main # Optional; default shown
develop_branch: develop # Optional; default shown
secrets:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Builds a Docker image from the Dockerfile
in the repository root and pushes it to the
GitHub Container Registry
with the specified version tag, and is best paired with the reusable-version-info.yml
workflow or the reusable-git-object-name.yml
workflow. This workflow will
additionally push the image with a latest
and test
tag for merges to the release and develop branch, respectively.
Use like:
name: Build
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
call-version-info-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
with:
conda_env_name: hyp3-plugin
call-docker-ghcr-workflow:
needs: call-version-info-workflow
uses: ASFHyP3/actions/.github/workflows/[email protected]
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
file: Dockerfile # Optional; default shown
secrets:
USER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Runs flake8 to enforce ASFHyP3's Python style guide. Use like:
name: Static analysis
on: push
jobs:
call-flake8-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
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
to ensure the Python code is styled correctly.
Runs Ruff to enforce a configurable Python style guide. Use like:
name: Static analysis
on: push
jobs:
call-ruff-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
to ensure the Python code is styled correctly.
To conform to ASFHyP3's Python style add the following to your project's pyproject.toml
:
[tool.ruff]
line-length = 120
src = ["src", "tests"]
[tool.ruff.format]
indent-style = "space"
quote-style = "single"
[tool.ruff.lint]
extend-select = [
"I", # isort: https://docs.astral.sh/ruff/rules/#isort-i
"UP", # pyupgrade: https://docs.astral.sh/ruff/rules/#pyupgrade-up
"D", # pydocstyle: https://docs.astral.sh/ruff/rules/#pydocstyle-d
"ANN", # annotations: https://docs.astral.sh/ruff/rules/#flake8-annotations-ann
"PTH", # use-pathlib-pth: https://docs.astral.sh/ruff/rules/#flake8-use-pathlib-pth
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.isort]
case-sensitive = true
lines-after-imports = 2
Ruff can automatically fix many linting errors and reformat code to match your Python style by running these commands:
ruff check --fix .
ruff format .
Outputs the human-readable git object name from git describe --dirty --tags --long --match "*[0-9]*"
of the calling repository. Use like:
name: Build
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
call-git-object-name-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
echo-git-object-name-outputs:
needs: call-git-object-name-workflow
runs-on: ubuntu-latest
steps:
- run: |
echo "name: ${{ needs.call-git-object-name-workflow.outputs.name }}"
This workflow is intended to be paired with workflows like the reusable-docker-ghcr.yml
workflow.
Ensures a PR has been appropriately labeled for a release. Use like:
name: Is PR labeled?
on:
pull_request:
types:
- opened
- labeled
- unlabeled
- synchronize
branches:
- main
jobs:
call-labeled-pr-check-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
to ensure a release label is included on any PR to main
.
Runs pytest and pytest-cov. Requires an environment.yml
file at the root of the calling
repository specifying all the runtime and testing dependencies needed, including pytest
and pytest-cov
. Use like:
name: Test
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
call-pytest-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
with:
local_package_name: hyp3_plugin # Required; package to produce a coverage report for
fail_fast: false # Optional; default shown
python_versions: >- # Optional; default shown
["3.9", "3.10", "3.11", "3.12"]
to test your Python package and produce a coverage report for. Importantly, python_versions
must be a valid JSON string
containing a list of python version strings.
Creates a release from a CHANGELOG.md
file and synchronize the release and development branches by:
- attempting to fast-forward merge the release branch into the develop branch
- falling back to opening a PR to bring the release branch into the develop branch.
Use like:
name: Create Release
on:
push:
tags:
- 'v*'
jobs:
call-release-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
with:
release_prefix: HyP3-CI
release_branch: main # Optional; default shown
develop_branch: develop # Optional; default shown
sync_pr_label: tools-bot # Optional; default shown
secrets:
USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }}
to create a release for every newly pushed version tag.
Add a comment to PRs when they are opened with a release checklist for developers and reviewers.
Use like:
name: Create Release Comment
on:
pull_request:
types:
- opened
branches:
- main
jobs:
call-release-checklist-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
permissions:
pull-requests: write
with:
# optional; example shown
additional_developer_items: '- [ ] If the step function code has changed, have you drained the job queue before merging?'
# optional; example shown
additional_reviewer_items: '- [ ] Are there any risks associated with this release?'
secrets:
USER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
to add a comment to PRs when they are opened to the main
branch.
Scan a PR for potentially committed secrets using truffleHog.
Important
This action assumes your stable release branch is named main
.
Use like:
name: Static analysis
on: push
jobs:
call-secrets-analysis-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
to scan every push for secrets.
Outputs the version number of the calling repositories Python package by running
python -m setuptools_scm
from the repository root.
Requires an environment.yml
file at the root of the calling repository specifying all the runtime
dependencies needed. This workflow will additionally output a Docker tag compatible version number. Use like:
name: Build
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
call-version-info-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
with:
python_version: '3.12' # Optional; default shown
echo-version-info-outputs:
needs: call-version-info-workflow
runs-on: ubuntu-latest
steps:
- run: |
echo "version: ${{ needs.call-version-info-workflow.outputs.version }}"
echo "version tag: ${{ needs.call-version-info-workflow.outputs.version_tag }}"
This workflow is intended to be paired with workflows like the reusable-docker-ghcr.yml
workflow.