Merge pull request #3329 from freifunk-gluon/dependabot/github_action… #28
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: Check generated CI | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
permissions: | |
contents: read | |
jobs: | |
check-ci: | |
name: Check generated CI | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install example site | |
run: ln -s ./docs/site-example ./site | |
- name: Update CI | |
run: make update-ci | |
- name: Show diff | |
run: git status; git diff | |
- name: Patch status | |
run: git diff-files --quiet |