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: 1 addition & 1 deletion .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ permissions: read-all

jobs:
release:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
if: github.repository == 'protoLabsAI/protoMaker'
timeout-minutes: 10
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ concurrency:

jobs:
checks:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request'

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/close-external-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
close-external-pr:
name: Close external code contributions
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
# Only run for PRs from forks (external contributors)
if: github.event.pull_request.head.repo.fork == true
permissions:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-protolab-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ permissions:
jobs:
test:
name: Test with Node ${{ matrix.node }} and ${{ matrix.package-manager }}
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}

strategy:
fail-fast: false
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:

summary:
name: Test Summary
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
needs: test
if: always()
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ permissions:

jobs:
deploy:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
if: github.repository == 'protoLabsAI/protoMaker'
timeout-minutes: 10
concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ permissions:

jobs:
deploy:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
if: github.repository == 'protoLabsAI/protoMaker'
timeout-minutes: 10
concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ concurrency:

jobs:
e2e:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request'
timeout-minutes: 20

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/harness-eval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:

jobs:
harness-eval:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request'

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/idea-accepted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:

jobs:
notify-acceptance:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
if: "github.event.label.name == 'status: accepted'"
steps:
- name: Post acceptance comment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/langfuse-prompt-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions: read-all

jobs:
validate:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}

steps:
- name: Checkout code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:

jobs:
build:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request'
outputs:
docs_only: ${{ steps.changes.outputs.docs_only }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
NODE_OPTIONS: '--max-old-space-size=4096'

ci-complete:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
needs: [build]
if: always() && (github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request')
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regenerate-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
regenerate:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
permissions:
contents: write
pull-requests: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:

jobs:
stale:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
steps:
- name: Mark stale issues and close inactive ones
uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
test:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request'

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:

jobs:
triage:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
steps:
- name: Add needs-triage label
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-security-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ concurrency:

jobs:
workflow-security-lint:
runs-on: namespace-profile-protolabs-linux
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request'
steps:
- name: Checkout code
Expand Down
Loading