Skip to content

Commit 1ef1ec6

Browse files
committed
Fixed typo .var -> .vars
1 parent 27b5fc3 commit 1ef1ec6

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/pr.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
dispatch_pr:
3535
if: ${{ github.event_name == 'pull_request'
3636
&& !github.event.pull_request.head.repo.fork
37-
&& (github.actor == var.ADMIN_HANDLE)
37+
&& (github.actor == vars.ADMIN_HANDLE)
3838
&& github.event.pull_request.base.ref == 'main' }}
3939
runs-on: ubuntu-latest
4040
timeout-minutes: 5
@@ -97,8 +97,8 @@ jobs:
9797
# ---------------------------
9898
dispatch_issue_comment:
9999
if: ${{ github.event_name == 'issue_comment'
100-
&& (github.actor == var.ADMIN_HANDLE)
101-
&& github.actor != var.CODING_AGENT_HANDLE }}
100+
&& (github.actor == vars.ADMIN_HANDLE)
101+
&& github.actor != vars.CODING_AGENT_HANDLE }}
102102
runs-on: ubuntu-latest
103103
timeout-minutes: 5
104104
steps:
@@ -166,8 +166,8 @@ jobs:
166166
# ---------------------------
167167
dispatch_pr_review_comment:
168168
if: ${{ github.event_name == 'pull_request_review_comment'
169-
&& (github.actor == var.ADMIN_HANDLE)
170-
&& github.actor != var.CODING_AGENT_HANDLE }}
169+
&& (github.actor == vars.ADMIN_HANDLE)
170+
&& github.actor != vars.CODING_AGENT_HANDLE }}
171171
runs-on: ubuntu-latest
172172
timeout-minutes: 5
173173
steps:
@@ -225,8 +225,8 @@ jobs:
225225
# ---------------------------
226226
dispatch_pr_review:
227227
if: ${{ github.event_name == 'pull_request_review'
228-
&& (github.actor == var.ADMIN_HANDLE)
229-
&& github.actor != var.CODING_AGENT_HANDLE }}
228+
&& (github.actor == vars.ADMIN_HANDLE)
229+
&& github.actor != vars.CODING_AGENT_HANDLE }}
230230
runs-on: ubuntu-latest
231231
timeout-minutes: 5
232232
steps:

0 commit comments

Comments
 (0)