ci: don't check repository_owner (#1436)

This commit is contained in:
awwpotato 2025-06-05 16:20:19 -07:00 committed by GitHub
parent 937a154dc3
commit 8456dfa7f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

View file

@ -10,7 +10,7 @@ on:
jobs:
conflicts:
runs-on: ubuntu-24.04
if: github.repository_owner == 'nix-community'
if: vars.APP_ID
steps:
- uses: actions/create-github-app-token@v2
id: app-token

View file

@ -21,7 +21,9 @@ jobs:
labels:
name: label-pr
runs-on: ubuntu-24.04
if: github.repository_owner == 'nix-community' && !contains(github.event.pull_request.title, '[skip treewide]') # yamllint disable-line rule:line-length
if: >
vars.APP_ID &&
!contains(github.event.pull_request.title, '[skip treewide]')
steps:
- uses: actions/create-github-app-token@v2
id: app-token

View file

@ -9,7 +9,7 @@ on:
jobs:
flake-update:
runs-on: ubuntu-24.04
if: github.repository_owner == 'nix-community'
if: vars.APP_ID
strategy:
matrix:
branch: [master, release-25.05]