Update submodules #236
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 submodules | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: 0 2 * * * # every day at 2 am | |
jobs: | |
pull: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: ConorMacBride/install-package@v1 | |
with: | |
apt: moreutils | |
- uses: actions/checkout@v5 | |
- uses: extractions/setup-just@v3 | |
- run: just check-for-hyprland-updates | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v6 | |
with: | |
commit_message: 🍱 Update parser data from wiki | |
- name: Bump version and push tag | |
id: tag_version | |
uses: miguelfito/github-bump-and-tag-action@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
default_bump: minor |