Skip to content

Commit 02ecddf

Browse files
committed
chore: test vrt
1 parent 6005d92 commit 02ecddf

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/vrt-update.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,13 @@ jobs:
1818
# PR from non-collaborators requires a manual re-run from collaborators which
1919
# makes run_attempt > 1 on first attempt causing the workflow to run.
2020
# So we always skip if the PR is not from a collaborator.
21-
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.run_attempt > 1 && contains(fromJSON('["COLLABORATOR", "MEMBER", "OWNER"]'), github.event.pull_request.author_association))
21+
# if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.run_attempt > 1 && contains(fromJSON('["COLLABORATOR", "MEMBER", "OWNER"]'), github.event.pull_request.author_association))
2222
steps:
23+
- name: Debug author association
24+
run: |
25+
echo "github.event.pull_request.author_association: ${{ github.event.pull_request.author_association }}"
26+
echo "contains condition result: ${{ contains(fromJSON('["COLLABORATOR", "MEMBER", "OWNER"]'), github.event.pull_request.author_association) }}"
27+
2328
- name: Check execution conditions and set target ref
2429
id: check
2530
run: |

0 commit comments

Comments
 (0)