25 lines
673 B
YAML
25 lines
673 B
YAML
on:
|
|
push:
|
|
paths:
|
|
- 'home/system/hyprland/bindings.nix'
|
|
permissions:
|
|
contents: write
|
|
jobs:
|
|
update-readme:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: ./
|
|
steps:
|
|
- name: Check out the repository to the runner
|
|
uses: actions/checkout@v4
|
|
- name: Run a script
|
|
run: |
|
|
chmod +x ./.github/scripts/keybindings_to_markdown.sh
|
|
./.github/scripts/keybindings_to_markdown.sh
|
|
git config user.name github-actions
|
|
git config user.email github-actions@github.com
|
|
git add .
|
|
git commit -m "Update KEYBINDINGS-HYPRLAND.md (auto)"
|
|
git push
|