do not run tests when in release process dedicated orgs

This commit is contained in:
Earl Warren 2023-05-23 21:11:31 +02:00
parent bc0db9b2df
commit 00dda82363
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
2 changed files with 2 additions and 0 deletions

View file

@ -10,6 +10,7 @@ on:
jobs:
release-simulation:
runs-on: self-hosted
if: github.repository_owner != 'forgejo-integration' && github.repository_owner != 'forgejo-experimental' && github.repository_owner != 'forgejo-release'
steps:
- uses: actions/checkout@v3

View file

@ -9,6 +9,7 @@ env:
jobs:
lint:
name: check and test
if: github.repository_owner != 'forgejo-integration' && github.repository_owner != 'forgejo-experimental' && github.repository_owner != 'forgejo-release'
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3