Skip to content
This repository was archived by the owner on Dec 30, 2025. It is now read-only.
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
fetch-depth: 0
- name: Check Docker
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
id: docker_changes
with:
files: |
Expand All @@ -40,7 +40,7 @@ jobs:
docker-compose*.yml
.dockerignore
- name: Check Shell
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
id: shell_changes
with:
files: |
Expand All @@ -49,12 +49,12 @@ jobs:
**/*.zsh
scripts/**
- name: Check Workflows
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
id: workflow_changes
with:
files: .github/workflows/**
- name: Check YAML
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
id: yaml_changes
with:
files: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[warning] truthy value should be one of [false, true] (truthy)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (92 > 80 characters) (line-length)

if: (needs.changes.outputs.docker == 'true' || github.event_name == 'workflow_dispatch')

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (105 > 80 characters) (line-length)

org.opencontainers.image.description=IRC server infrastructure for All Things Linux Community

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (92 > 80 characters) (line-length)

PR_VERSION="pr-${{ github.event.number }}-$(echo "${{ github.sha }}" | cut -c1-7)"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (210 > 80 characters) (line-length)

context: ./${{ matrix.service == 'unrealircd-webpanel' && 'src/frontend/webpanel' || matrix.service == 'unrealircd' && 'src/backend/unrealircd' || matrix.service == 'atheme' && 'src/backend/atheme' }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (152 > 80 characters) (line-length)

file: ./${{ matrix.service == 'unrealircd-webpanel' && 'src/frontend/webpanel/Containerfile' || format('{0}/Containerfile', matrix.service) }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (91 > 80 characters) (line-length)

echo "✅ Docker build validation for ${{ matrix.service }} completed successfully"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (160 > 80 characters) (line-length)

trivy_target: ./${{ matrix.service == 'unrealircd-webpanel' && 'src/frontend/webpanel/Containerfile' || format('{0}/Containerfile', matrix.service) }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (81 > 80 characters) (line-length)

images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ matrix.service }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[yamllint] reported by reviewdog 🐶
[error] line too long (105 > 80 characters) (line-length)

org.opencontainers.image.description=IRC server infrastructure for All Things Linux Community

Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
fetch-depth: 0
- name: Check Docker
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
id: docker_changes
with:
files: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
fetch-depth: 0
- name: Check Docker
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
id: docker_changes
with:
files: |
Expand All @@ -33,14 +33,14 @@ jobs:
compose.yaml
docker-compose*.yml
- name: Check Shell
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
id: shell_changes
with:
files: |
**/*.sh
scripts/**
- name: Check YAML
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
id: yaml_changes
with:
files: |
Expand Down