mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 14:06:50 +00:00
Fix dependency update workflows to only run on main repository
Co-authored-by: punkyard <59349105+punkyard@users.noreply.github.com>
This commit is contained in:
parent
a02ef6fd19
commit
77ddf66d3f
7 changed files with 11 additions and 4 deletions
1
.github/workflows/dependency-updates.yml
vendored
1
.github/workflows/dependency-updates.yml
vendored
|
|
@ -9,6 +9,7 @@ jobs:
|
||||||
dependency_updates:
|
dependency_updates:
|
||||||
name: Run dependency update script
|
name: Run dependency update script
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: github.repository == 'nextcloud/all-in-one'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: shivammathur/setup-php@20529878ed81ef8e78ddf08b480401e6101a850f # v2
|
- uses: shivammathur/setup-php@20529878ed81ef8e78ddf08b480401e6101a850f # v2
|
||||||
|
|
|
||||||
1
.github/workflows/imaginary-update.yml
vendored
1
.github/workflows/imaginary-update.yml
vendored
|
|
@ -9,6 +9,7 @@ jobs:
|
||||||
run_update:
|
run_update:
|
||||||
name: update to latest imaginary commit on master branch
|
name: update to latest imaginary commit on master branch
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: github.repository == 'nextcloud/all-in-one'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Run imaginary-update
|
- name: Run imaginary-update
|
||||||
|
|
|
||||||
1
.github/workflows/nextcloud-update.yml
vendored
1
.github/workflows/nextcloud-update.yml
vendored
|
|
@ -10,6 +10,7 @@ jobs:
|
||||||
run_update_sh:
|
run_update_sh:
|
||||||
name: Run nextcloud-update script
|
name: Run nextcloud-update script
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: github.repository == 'nextcloud/all-in-one'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Run nextcloud-update script
|
- name: Run nextcloud-update script
|
||||||
|
|
|
||||||
1
.github/workflows/psalm-update-baseline.yml
vendored
1
.github/workflows/psalm-update-baseline.yml
vendored
|
|
@ -8,6 +8,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
update-psalm-baseline:
|
update-psalm-baseline:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: github.repository == 'nextcloud/all-in-one'
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
|
||||||
1
.github/workflows/talk.yml
vendored
1
.github/workflows/talk.yml
vendored
|
|
@ -9,6 +9,7 @@ jobs:
|
||||||
talk-update:
|
talk-update:
|
||||||
name: update talk
|
name: update talk
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: github.repository == 'nextcloud/all-in-one'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Run talk-container-update
|
- name: Run talk-container-update
|
||||||
|
|
|
||||||
1
.github/workflows/update-helm.yml
vendored
1
.github/workflows/update-helm.yml
vendored
|
|
@ -9,6 +9,7 @@ jobs:
|
||||||
update-helm:
|
update-helm:
|
||||||
name: update helm chart
|
name: update helm chart
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: github.repository == 'nextcloud/all-in-one'
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
|
||||||
9
.github/workflows/update-yaml.yml
vendored
9
.github/workflows/update-yaml.yml
vendored
|
|
@ -5,10 +5,11 @@ on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '00 12 * * *'
|
- cron: '00 12 * * *'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update-yaml:
|
update-yaml:
|
||||||
name: update yaml files
|
name: update yaml files
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: github.repository == 'nextcloud/all-in-one'
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue