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

feat(ci): add exclude-types input to deploy.yml, fix(ci): check-docs.yml #26

Merged
merged 2 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .github/workflows/check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ jobs:

steps:
- uses: actions/checkout@v4
# Pillow installation requires some system packages
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libjpeg-dev zlib1g-dev
version: 1.0
- name: Check mkdocs
uses: deargen/workflows/actions/check-mkdocs@master
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
description: Dry run
type: boolean
default: false
exclude-types:
description: Commit types to exclude from the changelog
required: false
default: build,docs,style,other

jobs:
commit-changelog-and-release:
Expand All @@ -19,7 +23,7 @@ jobs:
version-tag: ${{ github.event.inputs.version-tag }}
dry-run: ${{ github.event.inputs.dry-run == 'true' }}
changelog-path: docs/CHANGELOG.md
exclude-types: build,docs,style,other
exclude-types: ${{ github.event.inputs.exclude-types }}

deploy-mkdocs:
if: ${{ github.event.inputs.dry-run == 'false' }}
Expand Down