.github/workflows/flake-updates: restrict to master
This commit is contained in:
parent
3c99cb3eeb
commit
69f3f50ac2
2 changed files with 2 additions and 0 deletions
.github/workflows
|
@ -5,6 +5,7 @@ on:
|
|||
jobs:
|
||||
createPullRequest:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.ref == 'refs/heads/master' # ensure workflow_dispatch only runs on master
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Nix
|
||||
|
|
1
.github/workflows/flake-updates.yml
vendored
1
.github/workflows/flake-updates.yml
vendored
|
@ -7,6 +7,7 @@ on:
|
|||
jobs:
|
||||
createPullRequest:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.ref == 'refs/heads/master' # ensure workflow_dispatch only runs on master
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Nix
|
||||
|
|
Loading…
Add table
Reference in a new issue