Skip to content

Commit d3ac0ea

Browse files
authored
chore(copier): update from template
1 parent 5739fa6 commit d3ac0ea

File tree

5 files changed

+16
-29
lines changed

5 files changed

+16
-29
lines changed

.config/copier/.copier-answers.python.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is @generated by <https://github.com/liblaf/copier-python>.
22
# DO NOT EDIT!
33
# prettier-ignore
4-
_commit: 5602f9a
4+
_commit: 8662df0
55
_src_path: gh:liblaf/copier-python
66
answers_file_shared: .config/copier/.copier-answers.shared.yaml
77
namespace: liblaf
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is @generated by <https://github.com/liblaf/copier-release>.
22
# DO NOT EDIT!
33
# prettier-ignore
4-
_commit: 55dfc73
4+
_commit: 4bfd0ad
55
_src_path: gh:liblaf/copier-release
66
release_type: python

.config/copier/.copier-answers.shared.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is @generated by <https://github.com/liblaf/copier-shared>.
22
# DO NOT EDIT!
33
# prettier-ignore
4-
_commit: 610df18
4+
_commit: 1aa0c04
55
_src_path: gh:liblaf/copier-shared
66
author_email: 30631553+liblaf@users.noreply.github.com
77
author_name: liblaf

.github/workflows/mega-linter.yaml

Lines changed: 11 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,42 +8,31 @@ name: MegaLinter
88

99
on:
1010
push:
11-
pull_request:
1211
workflow_dispatch:
1312

1413
jobs:
15-
skip-duplicate:
16-
name: Skip Duplicate
17-
permissions:
18-
actions: write
19-
runs-on: ubuntu-latest
20-
outputs:
21-
should-skip: ${{ steps.skip-duplicate.outputs.should-skip }}
22-
steps:
23-
- id: skip-duplicate
24-
name: Skip Duplicate
25-
uses: liblaf/actions/skip-duplicate@dist
26-
with:
27-
cancel-others: true
28-
2914
mega-linter:
3015
name: MegaLinter
3116
permissions:
3217
contents: write
33-
issues: write
3418
pull-requests: write
35-
needs:
36-
- skip-duplicate
37-
if: needs.skip-duplicate.outputs.should-skip != 'true'
19+
environment:
20+
name: MegaLinter
3821
runs-on: ubuntu-latest
3922
steps:
23+
- id: auth
24+
name: Auth
25+
uses: liblaf/actions/auth@dist
26+
with:
27+
app-id: ${{ vars.APP_ID }}
28+
private-key: ${{ secrets.PRIVATE_KEY }}
4029
- name: Checkout
4130
uses: actions/checkout@v5
42-
with:
43-
ref: ${{ github.head_ref || github.ref }}
4431
- id: lint
4532
name: MegaLinter
4633
uses: liblaf/actions/mega-linter@dist
34+
with:
35+
token: ${{ steps.auth.outputs.token }}
4736
- if: success() || failure()
4837
name: Upload Reports
4938
uses: actions/upload-artifact@v5
@@ -67,9 +56,7 @@ jobs:
6756
sign-commits: true
6857
title: "chore(mega-linter): apply linters automatic fixes"
6958
body-path: ${{ runner.temp }}/megalinter-report.md
70-
labels: |-
71-
autofix
72-
automerge
59+
labels: auto,automerge
7360
assignees: ${{ github.repository_owner }}
7461
reviewers: ${{ github.repository_owner }}
7562
- if: steps.lint.outputs.has-updated-sources > 0 && github.ref != 'refs/heads/main'

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ ci:
1919

2020
repos:
2121
- repo: https://github.com/astral-sh/ruff-pre-commit
22-
rev: v0.14.1
22+
rev: v0.14.2
2323
hooks:
2424
- id: ruff-check
2525
args:
2626
- --fix
2727
- id: ruff-format
2828
- repo: https://github.com/biomejs/pre-commit
29-
rev: v2.2.6
29+
rev: v2.3.1
3030
hooks:
3131
- id: biome-check
3232
exclude: \.jsonc?$

0 commit comments

Comments
 (0)