Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
rennsax committed Oct 1, 2024
1 parent 745746c commit 5c5cf82
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/monthly-upgrade.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Monthly Upgrade
on:
workflow_dispatch:
schedule:
- cron: '0 0 28 * *'

jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Get current month
run: |
echo "CURRENT_MONTH=$(date +'%B')" >> $GITHUB_ENV
echo "CURRENT_YEAR=$(date +'%Y')" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@main
with:
pr-title: "Monthly Flake Upgrade (${{ env.CURRENT_MONTH }}, ${{ env.CURRENT_YEAR }})"
pr-labels: |
dependencies
automated

0 comments on commit 5c5cf82

Please sign in to comment.