Package Update #5715
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: "Package Update" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 * * * *' #every hour | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
token: ${{ secrets.GIT_TOKEN }} # https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow | |
- uses: DeterminateSystems/nix-installer-action@main | |
- run: git config user.name github-actions[bot] && git config user.email github-actions[bot]@users.noreply.github.com | |
- run: nix profile install nixpkgs#nix-update | |
- run: nix-update --flake --commit transmission | |
- run: git push |