mirror of
https://github.com/github/awesome-copilot.git
synced 2026-03-12 12:15:12 +00:00
Merge branch 'staged' into addDataverseMcpInstaller
This commit is contained in:
20
.github/aw/actions-lock.json
vendored
20
.github/aw/actions-lock.json
vendored
@@ -1,14 +1,34 @@
|
||||
{
|
||||
"entries": {
|
||||
"actions/checkout@v6.0.2": {
|
||||
"repo": "actions/checkout",
|
||||
"version": "v6.0.2",
|
||||
"sha": "de0fac2e4500dabe0009e67214ff5f5447ce83dd"
|
||||
},
|
||||
"actions/download-artifact@v6": {
|
||||
"repo": "actions/download-artifact",
|
||||
"version": "v6",
|
||||
"sha": "018cc2cf5baa6db3ef3c5f8a56943fffe632ef53"
|
||||
},
|
||||
"actions/github-script@v8": {
|
||||
"repo": "actions/github-script",
|
||||
"version": "v8",
|
||||
"sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd"
|
||||
},
|
||||
"actions/upload-artifact@v6": {
|
||||
"repo": "actions/upload-artifact",
|
||||
"version": "v6",
|
||||
"sha": "b7c566a772e6b6bfb58ed0dc250532a479d7789f"
|
||||
},
|
||||
"github/gh-aw/actions/setup@v0.45.7": {
|
||||
"repo": "github/gh-aw/actions/setup",
|
||||
"version": "v0.45.7",
|
||||
"sha": "5d8900eb6f6230c9d41a3c30af320150a2361285"
|
||||
},
|
||||
"github/gh-aw/actions/setup@v0.46.1": {
|
||||
"repo": "github/gh-aw/actions/setup",
|
||||
"version": "v0.46.1",
|
||||
"sha": "874bdd8271bf8c21902b068fb1ca6a22d2dc4b7a"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
@@ -49,6 +49,6 @@ jobs:
|
||||
git config user.name "github-actions[bot]"
|
||||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||
git add -A
|
||||
git add -f plugins/*/agents/ plugins/*/commands/ plugins/*/skills/
|
||||
git add -f plugins/*/agents/ plugins/*/skills/
|
||||
git commit -m "chore: publish from staged [skip ci]" --allow-empty
|
||||
git push origin HEAD:main --force
|
||||
|
||||
@@ -25,12 +25,16 @@ jobs:
|
||||
id: check
|
||||
run: |
|
||||
# Check for YAML/lock files in workflows/ and any .github/ modifications
|
||||
# Allow .github/aw/actions-lock.json which is needed for workflow compilation
|
||||
forbidden=$(git diff --name-only --diff-filter=ACM origin/${{ github.base_ref }}...HEAD -- \
|
||||
'workflows/**/*.yml' \
|
||||
'workflows/**/*.yaml' \
|
||||
'workflows/**/*.lock.yml' \
|
||||
'.github/*' \
|
||||
'.github/**')
|
||||
'.github/**' \
|
||||
| grep -v '^\.github/aw/actions-lock\.json$' \
|
||||
| grep -v '^\.github/workflows/validate-agentic-workflows-pr\.yml$' \
|
||||
|| true)
|
||||
|
||||
if [ -n "$forbidden" ]; then
|
||||
echo "❌ Forbidden files detected:"
|
||||
|
||||
Reference in New Issue
Block a user