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
8 changes: 4 additions & 4 deletions .github/workflows/labeler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ name: "PR Labeler"
on:
pull_request_target:

permissions:
pull-requests: write
issues: write

jobs:
labeler:
name: "Labeler"
runs-on: ubuntu-latest
timeout-minutes: 5

permissions:
pull-requests: write
issues: write

steps:
- name: "Checkout Configs"
uses: actions/checkout@v5
Expand Down
28 changes: 15 additions & 13 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,24 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
pull-requests: write

jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
timeout-minutes: 5

permissions:
pull-requests: write

steps:
- name: "Checkout"
uses: actions/checkout@v5

#- name: "Debug event.json"
# run: |
# cat "${GITHUB_EVENT_PATH}"
#- name: "Debug CTX github"
# continue-on-error: true
# env:
# GITHUB_CTX: ${{ toJSON(github) }}
# run: echo "$GITHUB_CTX"

- name: "ShellCheck"
if: ${{ !cancelled() }}
Expand All @@ -43,13 +45,6 @@ jobs:
echo "::endgroup::"
npx prettier --check .

- name: "Hadolint"
if: ${{ !cancelled() }}
uses: hadolint/[email protected]
with:
dockerfile: Dockerfile
ignore: DL3018

- name: "Yamllint"
if: ${{ !cancelled() }}
env:
Expand All @@ -76,6 +71,13 @@ jobs:
echo "::endgroup::"
"${RUNNER_TEMP}/actionlint" -color -verbose -shellcheck= -pyflakes=

- name: "Hadolint"
if: ${{ !cancelled() }}
uses: hadolint/[email protected]
with:
dockerfile: Dockerfile
ignore: DL3018

#- name: "Vale"
# if: ${{ !cancelled() }}
# uses: errata-ai/[email protected]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
name: "Release"
runs-on: ubuntu-latest
timeout-minutes: 5

permissions:
contents: write

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tags.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
name: "Tags"
runs-on: ubuntu-latest
timeout-minutes: 5

permissions:
contents: write

Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@ jobs:
- name: "Checkout"
uses: actions/checkout@v5

#- name: "Debug event.json"
# run: |
# cat "${GITHUB_EVENT_PATH}"
#- name: "Debug CTX github"
# continue-on-error: true
# env:
# GITHUB_CTX: ${{ toJSON(github) }}
# run: echo "$GITHUB_CTX"

- name: "1: Write YAML"
if: ${{ !cancelled() }}
Expand Down
Loading