mirror of
https://github.com/lunchcat/sif.git
synced 2026-07-01 18:44:36 -07:00
08874762ba
- add golangci-lint job to go.yml (parallel with build+test) - add Go 1.23/1.24 version matrix, coverage only on 1.24 - upgrade setup-go@v4 to v5, codecov@v4 to v5 across all workflows - fix check-large-files bug (find|while never exits 1), exclude .git/ - add concurrency groups to push+PR workflows (no duplicate runs) - lowercase all workflow names to match project voice - add gosec, errorlint, gocognit, nilnil, wastedassign, usetesting linters - remove deprecated exportloopref (Go 1.22 fixed loop var capture) - new: govulncheck.yml - Go vuln scanner with call-graph analysis - new: scorecard.yml - OpenSSF supply chain scorecard - new: dependabot.yml - auto-update Go deps + Actions versions - release: SHA256 checksums + SBOM generation for all artifacts - add CODEOWNERS
26 lines
516 B
YAML
26 lines
516 B
YAML
name: mind your language
|
|
on:
|
|
issues:
|
|
types:
|
|
- opened
|
|
- edited
|
|
issue_comment:
|
|
types:
|
|
- created
|
|
- edited
|
|
pull_request_review_comment:
|
|
types:
|
|
- created
|
|
- edited
|
|
jobs:
|
|
echo_issue_comment:
|
|
runs-on: ubuntu-latest
|
|
name: profanity check
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Profanity check step
|
|
uses: tailaiw/mind-your-language-action@v1.0.3
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|