Skip to content

Cosmic

Cosmic #246

Workflow file for this run

name: Cosmic
on:
schedule:
- cron: '0 23 * * *'
workflow_dispatch:
jobs:
update:
name: Cosmic Update
runs-on: ubuntu-latest
permissions:
actions: write
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v14
- uses: cachix/cachix-action@v15
with:
name: cosmic
- name: Configure git
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
- run: nix -vL run --show-trace .#update
- id: create-pr
uses: peter-evans/create-pull-request@v7
with:
branch: update_cosmic_action
delete-branch: true
committer: 'github-actions[bot] <github-actions[bot]@users.noreply.github.com>'
author: 'github-actions[bot] <github-actions[bot]@users.noreply.github.com>'
commit-message: 'pkgs: update cosmic'
title: 'pkgs: update cosmic'
labels: 'dependencies'
body: |
Automated bump of COSMIC packages
- uses: benc-uk/workflow-dispatch@v1
if: ${{ contains(fromJSON('["created", "updated"]'), steps.create-pr.outputs.pull-request-operation) }}
with:
workflow: ci.yml
ref: refs/heads/update_cosmic_action