hm. maybe like this. also force runners to go on fructose as glucose seems to be having a problem at the moment.
Some checks failed
/ nix fmt (push) Successful in 48s
/ Update .lock file (push) Failing after 2m16s

This commit is contained in:
Ittihadyya 2024-11-26 16:04:09 +02:00
parent cfa0a3992c
commit d1bb618cc7
2 changed files with 9 additions and 1 deletions

View file

@ -3,6 +3,7 @@ on:
pull_request_target: pull_request_target:
jobs: jobs:
format: format:
runs_on: fructose
name: "nix fmt" name: "nix fmt"
steps: steps:
- name: Checkout repository - name: Checkout repository

View file

@ -6,6 +6,7 @@ on:
- cron: '0 2 * * *' - cron: '0 2 * * *'
jobs: jobs:
flake-update: flake-update:
runs_on: fructose
name: "Update .lock file" name: "Update .lock file"
steps: steps:
- name: Checkout repository - name: Checkout repository
@ -29,3 +30,9 @@ jobs:
pr-labels: | pr-labels: |
dependencies dependencies
automated automated
- name: Checkout CI branch
run: git checkout update_flake_lock_action
if: ${{ steps.update.outputs.pull-request-number }}
- name: Force push changes to CI branch
run: git push origin update_flake_lock_action --force
if: ${{ steps.update.outputs.pull-request-number }}