Testing
This commit is contained in:
parent
09405200e9
commit
a1f5adfbf2
1 changed files with 10 additions and 1 deletions
|
@ -4,7 +4,8 @@ on:
|
|||
workflow_dispatch: # allows manual triggering
|
||||
schedule:
|
||||
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
|
||||
|
||||
env:
|
||||
FORGEJO_TOKEN: ${{ secrets.GLOBAL_FORGEJO_TOKEN }}
|
||||
jobs:
|
||||
lockfile:
|
||||
runs-on: docker
|
||||
|
@ -13,13 +14,20 @@ jobs:
|
|||
steps:
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
token: ${{ env.FORGEJO_TOKEN }}
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
token: ${{ env.FORGEJO_TOKEN }}
|
||||
- name: Install Nix
|
||||
uses: actions/nix-installer-action@main
|
||||
with:
|
||||
token: ${{ env.FORGEJO_TOKEN }}
|
||||
- name: Update flake.lock
|
||||
uses: actions/update-flake-lock@main
|
||||
with:
|
||||
token: ${{ env.FORGEJO_TOKEN }}
|
||||
pr-title: "Update flake.lock"
|
||||
pr-labels: |
|
||||
dependencies
|
||||
|
@ -28,6 +36,7 @@ jobs:
|
|||
- uses: actions/gotify-action@master
|
||||
if: always()
|
||||
with:
|
||||
token: ${{ env.FORGEJO_TOKEN }}
|
||||
gotify_api_base: ${{ secrets.GOTIFY_URL }}
|
||||
gotify_app_token: ${{ secrets.GOTIFY_TOKEN }}
|
||||
notification_title: |
|
||||
|
|
Loading…
Add table
Reference in a new issue