diff --git a/.github/workflows/check-flavors.yml b/.github/workflows/check-flavors.yml new file mode 100644 index 00000000000..391685b9f8b --- /dev/null +++ b/.github/workflows/check-flavors.yml @@ -0,0 +1,22 @@ +name: Check MicroK8s patches + +on: + pull_request: + branches: [master] + push: + branches: [master] + +jobs: + update: + runs-on: ubuntu-latest + strategy: + matrix: + patch: [strict, fips] + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Apply patches + run: | + git config --global user.email microk8s@canonical.com + git config --global user.name microk8s-bot + git am build-scripts/patches/${{ matrix.patch }}/*.patch