Skip to content

Commit 6c0f436

Browse files
authored
feat: add aspell (#297)
* ci(release): fail workflow as a reminder to generate release notes * build(aspell): add package
1 parent 153668b commit 6c0f436

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

.github/workflows/docker-release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,12 @@ jobs:
7373
images+=("${tag}@${DIGEST}")
7474
done
7575
cosign sign --recursive --yes "${images[@]}"
76+
- name: Manually generate release note
77+
shell: bash
78+
run: |
79+
set -euo pipefail
80+
IFS=$'\n\t'
81+
echo "This failure is expected. It is a reminder to update the release notes for this newly created release."
82+
echo "To do so, go to ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/releases/latest and click on the edit button."
83+
echo "Then click on the 'Generate release notes' button and finally the 'Update release' button. Cheers!"
84+
exit 1

.zizmor.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@ rules:
33
forbidden-uses:
44
config:
55
allow:
6+
- Azure/*
67
- actions/*
8+
- aws-actions/*
79
- docker/*
8-
- github/codeql-action/*
9-
- google/osv-scanner-action/*
10-
- microsoft/DevSkim-Action
11-
- microsoft/security-devops-action
12-
- ossf/scorecard-action
13-
- sigstore/cosign-installer
10+
- github/*
11+
- google-github-actions/*
12+
- google/*
13+
- googleapis/*
14+
- microsoft/*
15+
- ossf/*
16+
- sigstore/*
1417
- super-linter/super-linter

xml/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ SHELL ["/bin/ash", "-euo", "pipefail", "-c"]
1212
# @TL FIXME: xml2rfc currently only in edge stream
1313
RUN apk upgrade --no-cache \
1414
&& apk add --no-cache \
15+
aspell=0.60.8.1-r0 \
16+
aspell-de=20161207.7.0-r0 \
17+
aspell-en=2020.12.07-r0 \
18+
aspell-fr=0.50.3-r0 \
19+
aspell-ru=0.99_p7-r2 \
20+
aspell-uk=1.4.0-r3 \
1521
coreutils=9.7-r1 \
1622
curl=8.14.1-r1 \
1723
dasel=2.8.1-r7 \

xml/docker-compose.test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ services:
1111
if [ $$(id -u) -ne 1000 ]; then
1212
exit 1
1313
fi
14+
aspell --version # aspell
1415
awk --version # gawk
1516
base64 --version # coreutils
1617
curl --version # curl

0 commit comments

Comments
 (0)