Skip to content

Audit Snyk check/fix prod-2-9-advance #5807

Audit Snyk check/fix prod-2-9-advance

Audit Snyk check/fix prod-2-9-advance #5807

Workflow file for this run

---
# Compare branch prod-2-7-advance to prod-2-7 except some files removed in file ci/cleanup.
name: Compare simple and advance branch
on:
push:
branches:
- prod-2-9-advance
pull_request:
env:
REF_BRANCH: prod-2-9
jobs:
main:
runs-on: ubuntu-24.04
name: Compare simple and advance branch
timeout-minutes: 10
if: github.actor != 'renovate[bot]'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
ref: ${{ env.REF_BRANCH }}
path: ref
- run: mv ref ../
- run: ci/cleanup .
- run: ci/cleanup ../ref
- run: rm ci/cleanup
- run: cd ..; diff --unified --recursive --new-file demo_geomapfish ref
if: always()
- run: |-
set -eux && \
cd ../demo_geomapfish && \
git config --global init.defaultBranch master && \
git init && \
git config user.email "you@example.com" && \
git config user.name "Your Name" && \
git add --all && \
git commit -m temp && \
cp -r ../ref/. . && \
git add --all && \
git diff --staged --patch --binary > /tmp/base.patch
if: failure()
- uses: actions/upload-artifact@v4
with:
name: Update from base branch.patch
path: /tmp/base.patch
retention-days: 1
if: failure()