Update Zed #67
This file contains hidden or 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: Update Zed | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 0 */2 * *" | |
| jobs: | |
| update-flake-lock: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Install Determinate Nix | |
| uses: DeterminateSystems/determinate-nix-action@v3 | |
| - name: Update flake.lock | |
| uses: DeterminateSystems/update-flake-lock@main | |
| with: | |
| pr-title: "Update Zed Flake Input" | |
| inputs: chaotic | |
| token: ${{ secrets.NIX_UPDATE_FLAKE_LOCK_ACTION }} | |
| branch: update-zed-action | |
| git-author-name: Github Actions | |
| git-author-email: github-actions[bot]@users.noreply.github.com | |
| git-committer-name: Daniel Gafni | |
| git-committer-email: [email protected] | |
| pr-assignees: danielgafni | |
| sign-commits: true | |
| gpg-private-key: ${{ secrets.NIX_FLAKE_UPDATE_GPG_PRIVATE_KEY }} | |
| gpg-passphrase: ${{ secrets.NIX_FLAKE_UPDATE_GPG_PASSPHRASE }} | |
| pr-labels: | | |
| dependencies | |
| automated |