Artifact bb9f0e8cef1221e01b28aed090646514f016c261:
- Executable file utils/setcicd — part of check-in [3ced0f4705] at 2024-07-11 13:28:25 on branch v1.81-journal-based-throttling — Added setcicd script for registering branches ready to merge (user: mrwellan, size: 234) [annotate] [blame] [check-ins using] [more...]
#!/bin/bash
branch=$(fossil branch current)
wikiname=${branch}_cicd
echo "ready to merge" > $wikiname
if fossil wiki export $wikiname;then
fossil wiki commit $wikiname $wikiname
else
fossil wiki create $wikiname $wikiname
fi