Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ permissions:

jobs:
CLAAssistant:
# The CI bot credentials and protected signature branch only exist upstream.
if: ${{ github.repository == 'vendurehq/vendure' }}
runs-on: ubuntu-latest
steps:
- name: Generate CI Bot Token
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/deploy_dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ concurrency:

jobs:
deploy:
# Preview deployment credentials are only configured in the upstream repository.
if: ${{ github.repository == 'vendurehq/vendure' }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:

generate-manifest:
name: Generate & commit manifest
# Skip fork PRs (can't push back to fork branches) and draft PRs
if: ${{ github.event_name == 'push' || (!github.event.pull_request.head.repo.fork && !github.event.pull_request.draft) }}
# The CI bot credentials only exist upstream. Also skip fork and draft PRs.
if: ${{ github.repository == 'vendurehq/vendure' && (github.event_name == 'push' || (!github.event.pull_request.head.repo.fork && !github.event.pull_request.draft)) }}
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generate_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ concurrency:
jobs:
generate:
name: Generate & commit docs
# Skip fork PRs (can't push back to fork branches) and draft PRs
if: ${{ !github.event.pull_request.head.repo.fork && !github.event.pull_request.draft }}
# The CI bot credentials only exist upstream. Also skip fork and draft PRs.
if: ${{ github.repository == 'vendurehq/vendure' && !github.event.pull_request.head.repo.fork && !github.event.pull_request.draft }}
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down
Loading
Loading