Skip to content

Commit

Permalink
Run ci on fork
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler committed Feb 6, 2025
1 parent 9e49d39 commit 205d9a9
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 24 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ name: CMake

on:
push:
branches:
- 'main'
pull_request:
types:
- unlabeled
workflow_dispatch:

concurrency:
group: cmake-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name != 'push' }}
cancel-in-progress: true

env:
SEQAN3_NO_VERSION_CHECK: 1
Expand All @@ -29,7 +27,7 @@ jobs:
build:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
if: github.repository_owner == 'eseiler' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
strategy:
fail-fast: false
matrix:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/ci_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ name: Coverage

on:
push:
branches:
- 'main'
pull_request:
types:
- unlabeled
workflow_dispatch:

concurrency:
group: coverage-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: false
cancel-in-progress: true

env:
SEQAN3_NO_VERSION_CHECK: 1
Expand All @@ -29,7 +27,7 @@ jobs:
build:
runs-on: ubuntu-latest
name: ${{ matrix.compiler }}
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
if: github.repository_owner == 'eseiler' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
strategy:
fail-fast: false
matrix:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ name: Unit Linux

on:
push:
branches:
- 'main'
pull_request:
types:
- unlabeled
workflow_dispatch:

concurrency:
group: linux-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name != 'push' }}
cancel-in-progress: true

env:
SEQAN3_NO_VERSION_CHECK: 1
Expand All @@ -29,7 +27,7 @@ jobs:
build:
runs-on: ubuntu-latest
name: ${{ matrix.compiler }}
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
if: github.repository_owner == 'eseiler' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
strategy:
fail-fast: false
matrix:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ name: Unit macOS

on:
push:
branches:
- 'main'
pull_request:
types:
- unlabeled
workflow_dispatch:

concurrency:
group: macos-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name != 'push' }}
cancel-in-progress: true

env:
SEQAN3_NO_VERSION_CHECK: 1
Expand All @@ -29,7 +27,7 @@ jobs:
build:
name: ${{ matrix.compiler }}
runs-on: macos-14
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
if: github.repository_owner == 'eseiler' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
strategy:
fail-fast: false
matrix:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/ci_misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ name: Linux

on:
push:
branches:
- 'main'
pull_request:
types:
- unlabeled
workflow_dispatch:

concurrency:
group: misc-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name != 'push' }}
cancel-in-progress: true

env:
SEQAN3_NO_VERSION_CHECK: 1
Expand All @@ -29,7 +27,7 @@ jobs:
build:
name: ${{ matrix.build }} ${{ matrix.compiler }}
runs-on: ubuntu-latest
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
if: github.repository_owner == 'eseiler' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
strategy:
fail-fast: false
matrix:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/license_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ name: License

on:
push:
branches:
- 'main'
pull_request:
types:
- unlabeled
workflow_dispatch:

concurrency:
group: license-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name != 'push' }}
cancel-in-progress: true

env:
TZ: Europe/Berlin
Expand All @@ -29,7 +27,7 @@ jobs:
name: REUSE Compliance
runs-on: ubuntu-22.04
timeout-minutes: 120
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
if: github.repository_owner == 'eseiler' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 205d9a9

Please sign in to comment.