We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a58bb42 + 45e222b commit d29b0edCopy full SHA for d29b0ed
.github/workflows/ci.yaml
@@ -198,9 +198,9 @@ jobs:
198
# This environment "npm" requires someone from
199
# coder/code-server-reviewers to approve the PR before this job runs.
200
environment: npm
201
- # Only run if PR comes from base repo
+ # Only run if PR comes from base repo or on merge request
202
# Reason: forks cannot access secrets and this will always fail
203
- if: github.event.pull_request.head.repo.full_name == github.repository
+ if: github.event.pull_request.head.repo.full_name == github.repository || github.event.pull_request.merged == true
204
runs-on: ubuntu-latest
205
steps:
206
- name: Checkout repo
0 commit comments