Update zen-browser #6590
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 zen-browser | |
| on: | |
| schedule: | |
| # Hourly | |
| - cron: "14 * * * *" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: cachix/install-nix-action@v20 | |
| - run: nix run github:Mic92/nix-update -- default --url https://github.com/zen-browser/desktop -F | |
| - uses: stefanzweifel/[email protected] | |
| with: | |
| commit_message: Bump version | |
| branch: main | |
| commit_options: '--no-verify --signoff' | |
| file_pattern: zen-browser.nix | |
| commit_user_name: Flake Bot # defaults to "GitHub Actions" | |
| #commit_user_email: [email protected] # defaults to "[email protected]" | |
| commit_author: Flake Bot <[email protected]> # defaults to author of the commit that triggered the run | |
| skip_dirty_check: false | |
| skip_fetch: true |