Skip to content
Snippets Groups Projects
check-patches.yml 663 B
Newer Older
  • Learn to ignore specific revisions
  • name: Check patches
    on:
      push:
    
        paths:
          - 'modules'
          - 'patches/**'
          - '.github/workflows/check-patches.yml'
    
      pull_request:
        types: [opened, synchronize, reopened]
    
        paths:
          - 'modules'
          - 'patches/**'
          - '.github/workflows/check-patches.yml'
    
    permissions:
      contents: read
    
    
    jobs:
      check-patches:
        name: Check patches
        runs-on: ubuntu-latest
        steps:
    
          - uses: actions/checkout@v4
    
          - 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