Skip to content
Snippets Groups Projects
Commit ac4d6625 authored by David Bauer's avatar David Bauer
Browse files

github: add workflow for checking patch status

Add a workflow to verify all patches to OpenWrt and the packages feeds
are refreshed. If they are not, the workflow fails.
parent 53f5b809
No related branches found
No related tags found
No related merge requests found
name: Check patches
on:
push:
pull_request:
types: [opened, synchronize, reopened]
jobs:
check-patches:
name: Check patches
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Refresh patches
run: make refresh-patches GLUON_SITEDIR="contrib/ci/minimal-site"
- name: Show diff
run: git status; git diff
- name: Patch status
run: git diff-files --quiet
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment