Bundix Lock #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Bundix Lock | |
on: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 1 * *" | |
jobs: | |
bundix-lock: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@v11 | |
- uses: DeterminateSystems/magic-nix-cache-action@v6 | |
- run: rm Gemfile.lock gemset.nix | |
- run: nix develop --command bundix --lock | |
- uses: peter-evans/[email protected] | |
with: | |
body: > | |
Automated changes by the `.github/workflows/bundix_lock.yml` GitHub | |
Action. | |
branch: update_gemfile_lock_action | |
commit-message: "ci(gemfile): update all inputs" | |
labels: dependencies | |
title: "ci(gemfile): update all inputs" |