Skip to content

Commit 7d70f33

Browse files
committed
fix conflict
2 parents c5ad5f6 + 86f1026 commit 7d70f33

File tree

111 files changed

+9051
-3110
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+9051
-3110
lines changed

.github/workflows/claude-pr-reviewer.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: Claude Docs PR Reviewer
22
on:
3-
pull_request:
4-
types:
5-
- synchronize
6-
- reopened
7-
- opened
8-
branches:
9-
- main
3+
# pull_request:
4+
# types:
5+
# - synchronize
6+
# - reopened
7+
# - opened
8+
# branches:
9+
# - main
1010
workflow_dispatch:
1111

1212
jobs:

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,7 @@ yarn-error.log*
2424
.vscode
2525

2626
#workflow cache
27-
.github/script/__pycache__
27+
.github/script/__pycache__
28+
29+
# Generated guide metadata
30+
src/components/guides-section/guide-metadata.json

docs/actions-and-automations/create-self-service-experiences/set-self-service-actions-rbac/dynamic-permissions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ This is particularly important for sensitive operations like production deployme
355355
}
356356
},
357357
"conditions": [
358-
"[.results.approvingUsers.entities[] | select(.identifier != \"{{.trigger.user.email}}\") | .identifier]"
358+
".trigger.user.email as $executor | [.results.approvingUsers.entities[] | select(.identifier != $executor) | .identifier]"
359359
]
360360
}
361361
}
@@ -376,7 +376,7 @@ Here's what's happening in each part:
376376

377377
3. **The Key Condition**:
378378
```json
379-
"[.results.approvingUsers.entities[] | select(.identifier != \"{{.trigger.user.email}}\") | .identifier]"
379+
".trigger.user.email as $executor | [.results.approvingUsers.entities[] | select(.identifier != $executor) | .identifier]"
380380
```
381381
This JQ expression:
382382
- Takes all moderator users from our query results.

0 commit comments

Comments
 (0)