ci: don't check repository_owner (#1436)
This commit is contained in:
parent
937a154dc3
commit
8456dfa7f6
3 changed files with 5 additions and 3 deletions
2
.github/workflows/conflicts.yml
vendored
2
.github/workflows/conflicts.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
4
.github/workflows/labels.yml
vendored
4
.github/workflows/labels.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
.github/workflows/update-flake.yml
vendored
2
.github/workflows/update-flake.yml
vendored
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue