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
6 changes: 6 additions & 0 deletions .changeset/fix-permission-contract.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@bradygaster/squad-sdk": patch
"@bradygaster/squad-cli": patch
---

Fix permission handler to use `approve-once` instead of deprecated `approved` kind, aligning with Copilot CLI v1.0.54+ permission contract
68 changes: 34 additions & 34 deletions .github/workflows/squad-docs-links.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
name: Docs — Weekly Link Check
on:
workflow_dispatch:
jobs:
linkcheck:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/checkout@v4
- name: Check external links
id: lychee
uses: lycheeverse/lychee-action@v2
with:
args: >-
--verbose
--no-progress
--timeout 30
--max-retries 3
--accept 200..=299,403,429
'docs/src/content/**/*.md'
'README.md'
fail: false
- name: Create issue on broken links
if: steps.lychee.outputs.exit_code != 0
uses: peter-evans/create-issue-from-file@v5
with:
title: '🔗 Broken external links detected'
content-filepath: ./lychee/out.md
labels: docs, automated
name: Docs — Weekly Link Check

on:
workflow_dispatch:

jobs:
linkcheck:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/checkout@v4

- name: Check external links
id: lychee
uses: lycheeverse/lychee-action@v2
with:
args: >-
--verbose
--no-progress
--timeout 30
--max-retries 3
--accept 200..=299,403,429
'docs/src/content/**/*.md'
'README.md'
fail: false

- name: Create issue on broken links
if: steps.lychee.outputs.exit_code != 0
uses: peter-evans/create-issue-from-file@v5
with:
title: '🔗 Broken external links detected'
content-filepath: ./lychee/out.md
labels: docs, automated
Loading