e66b2594ca
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28 lines
632 B
YAML
28 lines
632 B
YAML
---
|
|
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'
|
|
jobs:
|
|
check-patches:
|
|
name: Check patches
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- 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
|
|
|