mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
fix: filter close-duplicates for org members (#28856)
This commit is contained in:
parent
5ae95102b4
commit
98961a1d36
1 changed files with 5 additions and 1 deletions
6
.github/workflows/close-duplicates.yml
vendored
6
.github/workflows/close-duplicates.yml
vendored
|
|
@ -14,7 +14,11 @@ jobs:
|
|||
should_run: ${{ steps.should_run.outputs.run }}
|
||||
steps:
|
||||
- id: should_run
|
||||
run: echo "run=${{ github.event_name == 'issues' || github.event.discussion.category.name == 'Feature Request' }}" >> $GITHUB_OUTPUT
|
||||
run: |
|
||||
echo "run=${{
|
||||
(github.event_name == 'issues' || github.event.discussion.category.name == 'Feature Request')
|
||||
&& !contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.issue.author_association || github.event.discussion.author_association)
|
||||
}}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
get_body:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue