Skip to content
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
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
version: 2
updates:
- package-ecosystem: 'github-actions'
Expand Down
1 change: 1 addition & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
css:
- '**/*.css'
html:
Expand Down
1 change: 1 addition & 0 deletions .github/linters/.markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
# MD013/line-length
MD013: false

Expand Down
1 change: 0 additions & 1 deletion .github/linters/.yaml-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ extends: default
rules:
comments:
min-spaces-from-content: 1
document-start: disable
line-length: disable
truthy: disable
4 changes: 4 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
Expand All @@ -20,6 +21,9 @@ on:
schedule:
- cron: '26 19 * * 1'

permissions:
contents: read

jobs:
analyze:
name: Analyze
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/fetch-daily.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
---
name: Fetch GitHub Users Daily

on:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:

permissions:
contents: read

jobs:
fetch-users:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: pre-commit

on: [pull_request]
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/render-on-push.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Render HTML on Changes

on:
Expand All @@ -13,6 +14,9 @@ on:
types: [closed]
workflow_dispatch:

permissions:
contents: read

jobs:
render-html:
if: ${{ github.event_name != 'pull_request' || (github.event.pull_request && github.event.pull_request.merged == true) }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Lint Code
on:
push:
Expand Down
5 changes: 3 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
default_stages: [pre-commit, pre-push]
default_language_version:
python: python3
node: 24.12.0
node: 24.15.0
Comment thread
jbampton marked this conversation as resolved.
repos:
- repo: meta
hooks:
Expand All @@ -16,7 +17,7 @@ repos:
entry: prettier --write '**/*.yaml' '**/*.yml'
files: \.ya?ml$
language: node
additional_dependencies: ['prettier@3.7.4']
additional_dependencies: ['prettier@3.8.3']
Comment thread
jbampton marked this conversation as resolved.
- repo: https://github.com/pycqa/isort
rev: 8.0.1
hooks:
Expand Down
Loading