Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[INFRA] only run update schema on upstream repo #343

Merged
merged 1 commit into from
Apr 11, 2022
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/miss_hit_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
branches: ['*']

jobs:
build:
style:

runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/miss_hit_code_style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
branches: ['*']

jobs:
build:
style:

runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_tests_matlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
workflow_dispatch:

jobs:
build:
test:
runs-on: ubuntu-20.04

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_tests_octave.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
OCTFLAGS: --no-gui --no-window-system --silent

jobs:
build:
test:

runs-on: ubuntu-20.04

Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/update_schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,13 @@ on:
- cron: "* * * * 1" # every monday

jobs:
build:
schema:

# only trigger schema update on upstream repo
if: github.repository_owner == 'bids-standard'

runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v2
Expand Down