Skip to content

Commit

Permalink
Merge pull request #105 from hugovk/pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jan 3, 2023
2 parents 4dc18cd + fb0bfce commit e3da9a9
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .github/release-drafter.yml
Expand Up @@ -22,6 +22,11 @@ categories:
exclude-labels:
- "changelog: skip"

autolabeler:
- label: "changelog: skip"
branch:
- "/pre-commit-ci-update-config/"

template: |
$CHANGES
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/release-drafter.yml
Expand Up @@ -5,11 +5,27 @@ on:
# branches to consider in the event; optional, defaults to all
branches:
- main
# pull_request event is required only for autolabeler
pull_request:
# Only following types are handled by the action, but one can default to all as well
types: [opened, reopened, synchronize]
# pull_request_target event is required for autolabeler to support PRs from forks
# pull_request_target:
# types: [opened, reopened, synchronize]
workflow_dispatch:

permissions:
contents: read

jobs:
update_release_draft:
if: github.repository_owner == 'hugovk'
permissions:
# write permission is required to create a GitHub Release
contents: write
# write permission is required for autolabeler
# otherwise, read permission is required at least
pull-requests: write
runs-on: ubuntu-latest
steps:
# Drafts your next release notes as pull requests are merged into "main"
Expand Down
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
@@ -1,23 +1,23 @@
repos:
- repo: https://github.com/asottile/pyupgrade
rev: v2.38.2
rev: v3.3.1
hooks:
- id: pyupgrade
args: [--py37-plus]

- repo: https://github.com/psf/black
rev: 22.8.0
rev: 22.12.0
hooks:
- id: black
args: [--target-version=py37]

- repo: https://github.com/PyCQA/isort
rev: 5.10.1
rev: 5.11.4
hooks:
- id: isort

- repo: https://github.com/PyCQA/flake8
rev: 5.0.4
rev: 6.0.0
hooks:
- id: flake8
additional_dependencies: [flake8-2020, flake8-implicit-str-concat]
Expand All @@ -28,7 +28,7 @@ repos:
- id: python-check-blanket-noqa

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.4.0
hooks:
- id: check-json
- id: check-merge-conflict
Expand All @@ -39,7 +39,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/tox-dev/pyproject-fmt
rev: 0.3.5
rev: 0.4.1
hooks:
- id: pyproject-fmt

Expand Down

0 comments on commit e3da9a9

Please sign in to comment.