Testing workflows
This commit is contained in:
parent
9b21faa6ba
commit
a3111ff1ba
2 changed files with 16 additions and 5 deletions
.forgejo/workflows
|
@ -1,8 +1,9 @@
|
|||
---
|
||||
name: update-flake-lock
|
||||
on:
|
||||
workflow_dispatch: # allows manual triggering
|
||||
workflow_dispatch: # allows manual triggering
|
||||
schedule:
|
||||
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
|
||||
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
|
||||
|
||||
jobs:
|
||||
lockfile:
|
||||
|
@ -13,12 +14,22 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Install Nix
|
||||
uses: git.sysctl.io/actions/nix-installer-action@main
|
||||
uses: actions/nix-installer-action@main
|
||||
- name: Update flake.lock
|
||||
uses: git.sysctl.io/actions/update-flake-lock@main
|
||||
uses: actions/update-flake-lock@main
|
||||
with:
|
||||
pr-title: "Update flake.lock"
|
||||
pr-labels: |
|
||||
dependencies
|
||||
automated
|
||||
pr-assignees: albert
|
||||
- uses: actions/gotify-action@master
|
||||
if: always()
|
||||
with:
|
||||
gotify_api_base: ${{ secrets.GOTIFY_URL }}
|
||||
gotify_app_token: ${{ secrets.GOTIFY_TOKEN }}
|
||||
notification_title: |
|
||||
[${{ github.repository }}] Deployment ${{ job.status }}
|
||||
notification_message: |
|
||||
Status: ${{ job.status }}
|
||||
Commit: ${{ github.sha }}
|
||||
|
|
|
@ -10,7 +10,7 @@ on:
|
|||
|
||||
jobs:
|
||||
deploy-rs:
|
||||
runs-on: headscale-runner
|
||||
runs-on: forgejo
|
||||
container:
|
||||
image: git.sysctl.io/albert/actions-container-images/headscale-runner:latest
|
||||
options: --mount type=bind,src=/dev/net/tun,dst=/dev/net/tun --privileged
|
||||
|
|
Loading…
Add table
Reference in a new issue