Update hyprpm pin on latest Hyprland release #26
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: "Update hyprpm pin on latest Hyprland release" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * 0" # weekly on Sunday 00:00 | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
extra_nix_config: | | |
extra-substituters = https://hyprland.cachix.org | |
extra-trusted-public-keys = hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc= | |
- name: Update pins | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
set -eu | |
git fetch --depth=1 --tags origin main | |
./scripts/ci/pin-latest-hyprland main | |
if git diff --quiet hyprpm.toml; then # no changes | |
exit 0 | |
fi | |
echo 'creating branch for PR' >&2 | |
branchName="chore/pin-update$(%Y%m%d%H%M%S)" | |
git checkout -b "$branchName" | |
git add hyprpm.toml | |
git commit -m 'ci: automated update of hyprpm.toml' | |
echo 'creating PR' >&2 | |
gh pr create --base main \ | |
--head "$branchName" \ | |
--title 'Automated PR: Update hyprpm pin' \ | |
--body 'This PR was created by a Github Actions workflow' | |
echo 'PR created.' >&2 | |