-
Notifications
You must be signed in to change notification settings - Fork 0
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 #14 from savannahghi/develop
release v1.0.0
- Loading branch information
Showing
23 changed files
with
10,238 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,86 @@ | ||
name: CI | ||
|
||
on: [ push ] | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
on: | ||
- push | ||
|
||
jobs: | ||
build: | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
permissions: | ||
contents: read | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
python-version: [ "3.11", "3.12" ] | ||
|
||
python-version: | ||
- "3.11" | ||
- "3.12" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set up project using python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
uses: actions/setup-python@v5 | ||
with: | ||
cache: pip | ||
python-version: ${{ matrix.python-version }} | ||
|
||
# Run all pre-commit hooks on all the files. | ||
# Getting only staged files can be tricky in case a new PR is opened | ||
# since the action is run on a branch in detached head state | ||
- name: Install and run pre-commit | ||
uses: pre-commit/[email protected] | ||
|
||
uses: pre-commit/[email protected] | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install tox tox-gh-actions | ||
- name: Test with tox | ||
run: tox -r | ||
|
||
release: | ||
# Only run on the 'main' and 'develop' branches. | ||
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' | ||
needs: | ||
- build | ||
permissions: write-all | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
token: ${{ secrets.FYJ_GH_TOKEN }} | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
cache: pip | ||
python-version: "3.12" | ||
- name: Install requirements | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install tox tox-gh-actions | ||
- name: Set up GPG | ||
uses: crazy-max/ghaction-import-gpg@v6 | ||
with: | ||
git_commit_gpgsign: true | ||
git_committer_email: ${{ secrets.FYJ_GIT_COMMITTER_EMAIL }} | ||
git_committer_name: ${{ secrets.FYJ_GIT_COMMITTER_NAME }} | ||
# Currently, signing commits leads to the CI hanging indefinitely. | ||
# See https://github.com/semantic-release/semantic-release/issues/3065 | ||
git_tag_gpgsign: false | ||
git_user_signingkey: true | ||
gpg_private_key: ${{ secrets.FYJ_GPG_KEY }} | ||
passphrase: ${{ secrets.FYJ_GPG_KEY_PASSPHRASE }} | ||
trust_level: 5 | ||
- name: Set up NodeJS | ||
uses: actions/setup-node@v4 | ||
with: | ||
cache: npm | ||
node-version-file: .nvmrc | ||
- name: Install semantic-release | ||
run: npm ci | ||
- name: Create a release | ||
env: | ||
DEBUG: semantic-release:* | ||
GIT_AUTHOR_EMAIL: ${{ secrets.FYJ_GIT_COMMITTER_EMAIL }} | ||
GIT_AUTHOR_NAME: ${{ secrets.FYJ_GIT_COMMITTER_NAME }} | ||
GIT_COMMITTER_EMAIL: ${{ secrets.FYJ_GIT_COMMITTER_EMAIL }} | ||
GIT_COMMITTER_NAME: ${{ secrets.FYJ_GIT_COMMITTER_NAME }} | ||
GITHUB_TOKEN: ${{ secrets.FYJ_GH_TOKEN }} | ||
run: npx semantic-release |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
lts/* |
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 |
---|---|---|
@@ -0,0 +1,94 @@ | ||
branches: | ||
- main | ||
- name: develop | ||
channel: rc | ||
prerelease: rc | ||
plugins: | ||
- '@semantic-release/commit-analyzer' | ||
- - '@semantic-release/release-notes-generator' | ||
- linkCompare: true | ||
linkReferences: true | ||
writerOpts: | ||
commitGroupsSort: | ||
- type | ||
- title | ||
commitSort: | ||
- scope | ||
- subject | ||
- - semantic-release-replace-plugin | ||
- replacements: | ||
- countMatches: true | ||
files: | ||
- package.json | ||
from: '"version": ".*",' | ||
to: '"version": "${nextRelease.version}",' | ||
results: | ||
- file: package.json | ||
hasChanged: true | ||
numMatches: 1 | ||
numReplacements: 1 | ||
- - '@semantic-release/changelog' | ||
- changelogFile: docs/CHANGELOG.md | ||
- - '@semantic-release/git' | ||
- assets: | ||
- docs/CHANGELOG.md | ||
- package.json | ||
message: "release: ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" | ||
- - '@semantic-release/exec' | ||
- publishCmd: "export GITHUB_TOKEN='${process.env.GITHUB_TOKEN}'; tox -e package" | ||
- - '@semantic-release/github' | ||
- assets: | ||
- path: dist/* | ||
tagFormat: v${version} | ||
# ------------------------------------------------------------------------------ | ||
# GLOBAL PLUGIN OPTIONS | ||
# See: https://github.com/semantic-release/semantic-release/blob/master/docs/usage/plugins | ||
# .md#plugin-options-configuration | ||
# ------------------------------------------------------------------------------ | ||
parserOptions: | ||
noteKeywords: | ||
- BREAKING CHANGES | ||
- BREAKING CHANGE | ||
- BREAKING | ||
preset: conventionalcommits | ||
presetConfig: | ||
types: | ||
- type: build | ||
hidden: true | ||
- type: ci | ||
hidden: true | ||
- type: chore | ||
scope: deps | ||
section: Dependency Updates | ||
- type: chore | ||
section: Refactors | ||
- type: docs | ||
scope: api | ||
section: Documentation Updates | ||
- type: docs | ||
hidden: true | ||
- type: feat | ||
section: Features | ||
- type: fix | ||
section: Bug Fixes | ||
- type: release | ||
hidden: true | ||
- type: test | ||
hidden: true | ||
releaseRules: | ||
- type: chore | ||
scope: deps | ||
release: patch | ||
- type: docs | ||
scope: api | ||
release: patch | ||
- type: feat | ||
release: minor | ||
- type: fix | ||
release: patch | ||
- scope: minor | ||
release: minor | ||
- scope: patch | ||
release: patch | ||
- scope: no-release | ||
release: false |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## [1.0.0-rc.1](https://github.com/savannahghi/sghi-etl-commons/compare/...v1.0.0-rc.1) (2024-04-16) | ||
|
||
|
||
### Dependency Updates | ||
|
||
* **deps:** upgrade project dependencies ([#2](https://github.com/savannahghi/sghi-etl-commons/issues/2)) ([6bee92c](https://github.com/savannahghi/sghi-etl-commons/commit/6bee92caa6464c52ee03c0a609dec5fd5b919fea)) | ||
|
||
|
||
### Features | ||
|
||
* **processors:** add a `ProcessorPipe` ([#10](https://github.com/savannahghi/sghi-etl-commons/issues/10)) ([82a006e](https://github.com/savannahghi/sghi-etl-commons/commit/82a006ee58bfacc723e3bed2612114f002276719)) | ||
* **processors:** add a NOOP `Processor` ([#3](https://github.com/savannahghi/sghi-etl-commons/issues/3)) ([ecdf529](https://github.com/savannahghi/sghi-etl-commons/commit/ecdf529bbf091dc3d88060331ba6dc66703118f5)) | ||
* **processors:** add a processor decorator ([#4](https://github.com/savannahghi/sghi-etl-commons/issues/4)) ([9f3b039](https://github.com/savannahghi/sghi-etl-commons/commit/9f3b0393630c2bae8df568f4a0fd977f1d34effc)) | ||
* **sinks:** add a `NullSink` ([#9](https://github.com/savannahghi/sghi-etl-commons/issues/9)) ([2794f6a](https://github.com/savannahghi/sghi-etl-commons/commit/2794f6ab198d9a2e211cd57f3e6ab6c6aab0a815)) | ||
* **sinks:** add a sink decorator ([#7](https://github.com/savannahghi/sghi-etl-commons/issues/7)) ([6a89c85](https://github.com/savannahghi/sghi-etl-commons/commit/6a89c85d30e8a28abc995823df9fc06aa8d52f14)) | ||
* **sources:** add a source decorator ([#5](https://github.com/savannahghi/sghi-etl-commons/issues/5)) ([b42328e](https://github.com/savannahghi/sghi-etl-commons/commit/b42328e7c94bf975df4e2ddde454bdad13d8bae7)) | ||
* **utils:** add result gatherers ([#1](https://github.com/savannahghi/sghi-etl-commons/issues/1)) ([7c4e34f](https://github.com/savannahghi/sghi-etl-commons/commit/7c4e34f738e9b8774d7c1d7ba3e6386229b25786)) | ||
* **worflow_def:** add a `SimpleWorkflowDefinition` ([#11](https://github.com/savannahghi/sghi-etl-commons/issues/11)) ([ce1a9b0](https://github.com/savannahghi/sghi-etl-commons/commit/ce1a9b03a6fa6e0b6ab75a8635c98e0b8267be86)) | ||
|
||
|
||
### Refactors | ||
|
||
* **processors:** mark `processors._ProcessorOfCallable` as final ([#6](https://github.com/savannahghi/sghi-etl-commons/issues/6)) ([9e5d6c6](https://github.com/savannahghi/sghi-etl-commons/commit/9e5d6c6d50a8e92cb2fe35537edf866dd1098d15)) | ||
* **sinks:** rename `sinks._SourceOfCallable` class ([#8](https://github.com/savannahghi/sghi-etl-commons/issues/8)) ([e6f08e5](https://github.com/savannahghi/sghi-etl-commons/commit/e6f08e5f9edb25067529980d9d13f7e3d75a3847)) |
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
Oops, something went wrong.