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
17 changes: 17 additions & 0 deletions .github/workflows/analyze-build-efficiency.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Analyze Build Efficiency
on:
push:
paths:
- '.github/workflows/kiba.yml'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze-eff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Scan
run: grep "apt install" .github/workflows/kiba.yml | sort | uniq -c
15 changes: 15 additions & 0 deletions .github/workflows/analyze-build-success-trend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Analyze Build Success Trend
on:
schedule:
- cron: '0 0 * * 0'
permissions:
actions: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze-trend:
runs-on: ubuntu-latest
steps:
- name: Stats
run: echo "Analyzing success trends..."
16 changes: 16 additions & 0 deletions .github/workflows/analyze-pr-iso-impact.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Analyze PR ISO Impact
on:
pull_request:
paths:
- '.github/workflows/kiba.yml'
permissions:
pull-requests: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze-impact:
runs-on: ubuntu-latest
steps:
- name: Impact
run: echo "Analyzing impact..."
14 changes: 14 additions & 0 deletions .github/workflows/analyze-pr-size.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Analyze PR Size
on:
pull_request:
permissions:
pull-requests: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze-size:
runs-on: ubuntu-latest
steps:
- name: Size
run: echo "PR Size additions: ${{ github.event.pull_request.additions }}"

Check failure on line 14 in .github/workflows/analyze-pr-size.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/analyze-pr-size.yml#L14

could not parse as YAML: mapping values are not allowed in this context [syntax-check]
Raw output
e:.github/workflows/analyze-pr-size.yml:14:36: could not parse as YAML: mapping values are not allowed in this context [syntax-check]
17 changes: 17 additions & 0 deletions .github/workflows/audit-action-pinning.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Audit Action Pinning
on:
push:
paths:
- '.github/workflows/*.yml'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
audit-pinning:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check
run: grep "uses: actions/" .github/workflows/*.yml | grep -v "@v" || echo "Pinned"

Check failure on line 17 in .github/workflows/audit-action-pinning.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/audit-action-pinning.yml#L17

could not parse as YAML: mapping values are not allowed in this context [syntax-check]
Raw output
e:.github/workflows/audit-action-pinning.yml:17:23: could not parse as YAML: mapping values are not allowed in this context [syntax-check]
21 changes: 0 additions & 21 deletions .github/workflows/audit-build-absolute-paths-utilities.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/audit-build-apkbuild-options-check.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/audit-build-apt-get-no-upgrade.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/audit-build-apt-no-recommends.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/audit-build-apt-yes.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/audit-build-awk-v.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/audit-build-breezerc-purple-shadow.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/audit-build-calamares-sidebar-bg.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/audit-build-chown-h.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/audit-build-chromium-home.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/audit-build-clean-tmp.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/audit-build-cp-a.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/audit-build-curl-max-time.yml

This file was deleted.

Loading
Loading