mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-06-11 02:33:33 +00:00
Compare commits
1 Commits
add-plugin
...
bump-snowf
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bf3011a15c |
@@ -2286,7 +2286,7 @@
|
||||
"url": "https://github.com/Snowflake-Labs/snowflake-ai-kit.git",
|
||||
"path": "plugins/cortex-code",
|
||||
"ref": "main",
|
||||
"sha": "b16692d548e9c785be640c06f3f3220ddf46c065"
|
||||
"sha": "c3f720020a3b6c8927f97362c2e5884e959acd53"
|
||||
},
|
||||
"homepage": "https://docs.snowflake.com/en/user-guide/cortex-code"
|
||||
},
|
||||
|
||||
38
.github/workflows/validate-licenses.yml
vendored
38
.github/workflows/validate-licenses.yml
vendored
@@ -1,38 +0,0 @@
|
||||
name: Validate Plugin Licenses
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- 'plugins/**'
|
||||
push:
|
||||
branches: [main]
|
||||
paths:
|
||||
- 'plugins/**'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
validate-licenses:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Check every plugin has an Apache 2.0 LICENSE file
|
||||
run: |
|
||||
set -euo pipefail
|
||||
missing=()
|
||||
for plugin_dir in plugins/*/; do
|
||||
plugin="${plugin_dir%/}"
|
||||
if [[ ! -f "$plugin/LICENSE" ]]; then
|
||||
missing+=("$plugin")
|
||||
fi
|
||||
done
|
||||
if [[ "${#missing[@]}" -gt 0 ]]; then
|
||||
echo "::error::The following plugins are missing a LICENSE file:"
|
||||
for p in "${missing[@]}"; do
|
||||
echo " - $p"
|
||||
done
|
||||
exit 1
|
||||
fi
|
||||
echo "All $(ls -d plugins/*/ | wc -l) plugins have a LICENSE file."
|
||||
Reference in New Issue
Block a user