remove wfl

This commit is contained in:
Vaxry 2022-08-13 12:27:59 +02:00 committed by Mihai Fufezan
parent 30f175acf8
commit 2adca8bbb7
No known key found for this signature in database
GPG Key ID: 5899325F2F120900
1 changed files with 0 additions and 32 deletions

View File

@ -1,32 +0,0 @@
name: Send submodule updates to the website repository
on:
push:
branches:
- main
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
repository: hyprwm/hyprland-wiki-backend
token: ${{ secrets.TOKN }}
- name: Pull & update submodules recursively
run: |
git config --global user.name "Github Actions"
git config --global user.email "actions@github.com"
git submodule update --init --recursive
git submodule update --recursive --remote
with:
token: ${{ secrets.TOKN }}
- name: Commit
run: |
git config user.email "actions@github.com"
git config user.name "GitHub Actions - update submodules"
git add --all
git commit -m "Update submodules" || echo "No changes to commit"
git push