Skip to content

Commit daed64f

Browse files
authored
missing paseon config for CI jobs (#3071)
* missing paseon config for CI jobs * find one more
1 parent aaa81cf commit daed64f

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/build-wasm.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
options:
1010
- litentry
1111
- rococo
12+
- paseo
1213
ref:
1314
description: The commit SHA or tag for checking out code
1415
default: ""

.github/workflows/create-release-draft.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ on:
3636
options:
3737
- none
3838
- rococo
39+
- paseo
3940
- litentry
4041

4142
env:
@@ -76,6 +77,7 @@ jobs:
7677
matrix:
7778
chain:
7879
- rococo
80+
- paseo
7981
- litentry
8082
name: ${{ matrix.chain }}
8183
steps:

scripts/generate-release-notes.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ fi
116116

117117
if is_runtime_release; then
118118
echo "## Parachain runtime" >> "$1"
119-
for CHAIN in rococo litentry; do
119+
for CHAIN in rococo litentry paseo; do
120120
SRTOOL_DIGEST_FILE=$CHAIN-parachain-runtime/$CHAIN-parachain-srtool-digest.json
121121
RUNTIME_VERSION=$(grep spec_version runtime/$CHAIN/src/lib.rs | sed 's/.*version: //;s/,//')
122122
RUNTIME_COMPRESSED_SIZE=$(cat "$SRTOOL_DIGEST_FILE" | jq .runtimes.compressed.size | sed 's/"//g')
@@ -256,12 +256,12 @@ EOF
256256
commit=$(echo "$f" | cut -d'|' -f1)
257257
desc=$(echo "$f" | cut -d'|' -f2)
258258
output="- [\`$commit\`]($REPO/commit/$commit) $desc"
259-
259+
260260
for ((i=0; i<${#labels[@]}; i++)); do
261261
label=$(gh pr list --search "$commit" --label "${labels[i]}" --state merged)
262262
[ -n "$label" ] && output+=" $REPO/labels/${labels[i]}"
263263
done
264-
264+
265265
echo "$output" >> "$1"
266266
done
267267
fi

0 commit comments

Comments
 (0)