Skip to content

Commit

Permalink
bump reusable actions to v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kaitj committed Oct 6, 2023
1 parent c1ca97a commit 47faa70
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/assign_reviewers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ on:
types: [opened, ready_for_review]
jobs:
assign-reviewer:
uses: khanlab/actions/.github/workflows/workflow-pr_task-assignReviewer.yml@v0.2.0
uses: khanlab/actions/.github/workflows/workflow-pr_task-assignReviewer.yml@v0.2.1
2 changes: 1 addition & 1 deletion .github/workflows/bump_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ on:
jobs:
bump-version:
if: github.event.pull_request.merged == true
uses: khanlab/actions/.github/workflows/workflow-version_task-semverGithub.yml@v0.2.0
uses: khanlab/actions/.github/workflows/workflow-version_task-semverGithub.yml@v0.2.1
secrets:
BP-PAT: ${{ secrets.BP_PAT_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ on:
required: false
jobs:
release-package:
uses: khanlab/actions/.github/workflows/workflow-release_task-publishGithub.yml@v0.2.0
uses: khanlab/actions/.github/workflows/workflow-release_task-publishGithub.yml@v0.2.1
with:
comments: ${{ github.event.inputs.comments }}
secrets:
BP-PAT: ${{ secrets.BP_PAT_TOKEN }}
deploy-pypi:
uses: khanlab/actions/.github/workflows/workflow-release_task-deployPypi.yml@v0.2.0
uses: khanlab/actions/.github/workflows/workflow-release_task-deployPypi.yml@v0.2.1
secrets:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
name: Lint and test workflow
on:
push:
branches: ['*', '!push-action/*']
branches: ["*", "!push-action/*"]
pull_request:
branches: ['*', '!push-action/*']
branches: ["*", "!push-action/*"]
jobs:
quality:
name: Lint code
if: github.event.pull_request.merged == false
runs-on: ubuntu-latest
steps:
- name: Setup Python environment
uses: khanlab/actions/.github/actions/action-setup_task-installPyProject@v0.2.0
uses: khanlab/actions/.github/actions/action-setup_task-installPyProject@v0.2.1
with:
python-version: '3.10'
python-version: "3.10"
- name: yamlfix
run: poetry run poe yamlfix-check
- name: isort
Expand All @@ -30,11 +30,11 @@ jobs:
needs: [quality]
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
test-split: ['1', '2', '3', '4', '5']
python-version: ["3.8", "3.9", "3.10", "3.11"]
test-split: ["1", "2", "3", "4", "5"]
steps:
- name: Setup Python environment
uses: khanlab/actions/.github/actions/action-setup_task-installPyProject@v0.2.0
uses: khanlab/actions/.github/actions/action-setup_task-installPyProject@v0.2.1
with:
python-version: ${{ matrix.python-version }}
install-library: true
Expand Down

0 comments on commit 47faa70

Please sign in to comment.