ci: Prevent merging of fixups
This commit is contained in:
parent
95c5d67b58
commit
ffa77ecf10
3 changed files with 15 additions and 6 deletions
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
|
|
@ -22,3 +22,12 @@ jobs:
|
|||
with:
|
||||
name: d2chaos-test
|
||||
path: ./d2chaos/out
|
||||
nofixups:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: git submodule update --init
|
||||
- run: COLOR=1 ./ci/sub/nofixups.sh
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets._GITHUB_TOKEN }}
|
||||
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
||||
|
|
|
|||
|
|
@ -138,15 +138,15 @@ strlen() {
|
|||
}
|
||||
|
||||
echoerr() {
|
||||
FGCOLOR=1 logp err "$*" | humanpath>&2
|
||||
FGCOLOR=1 logp err "$*"
|
||||
}
|
||||
|
||||
caterr() {
|
||||
FGCOLOR=1 logpcat err "$@" | humanpath >&2
|
||||
FGCOLOR=1 logpcat err "$@"
|
||||
}
|
||||
|
||||
printferr() {
|
||||
FGCOLOR=1 logfp err "$@" | humanpath >&2
|
||||
FGCOLOR=1 logfp err "$@"
|
||||
}
|
||||
|
||||
logp() {
|
||||
|
|
|
|||
|
|
@ -144,15 +144,15 @@ strlen() {
|
|||
}
|
||||
|
||||
echoerr() {
|
||||
FGCOLOR=1 logp err "$*" | humanpath>&2
|
||||
FGCOLOR=1 logp err "$*"
|
||||
}
|
||||
|
||||
caterr() {
|
||||
FGCOLOR=1 logpcat err "$@" | humanpath >&2
|
||||
FGCOLOR=1 logpcat err "$@"
|
||||
}
|
||||
|
||||
printferr() {
|
||||
FGCOLOR=1 logfp err "$@" | humanpath >&2
|
||||
FGCOLOR=1 logfp err "$@"
|
||||
}
|
||||
|
||||
logp() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue