Skip to content

Commit

Permalink
missing paseon config for CI jobs (#3071)
Browse files Browse the repository at this point in the history
* missing paseon config for CI jobs

* find one more
  • Loading branch information
BillyWooo authored Sep 18, 2024
1 parent aaa81cf commit daed64f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
options:
- litentry
- rococo
- paseo
ref:
description: The commit SHA or tag for checking out code
default: ""
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/create-release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ on:
options:
- none
- rococo
- paseo
- litentry

env:
Expand Down Expand Up @@ -76,6 +77,7 @@ jobs:
matrix:
chain:
- rococo
- paseo
- litentry
name: ${{ matrix.chain }}
steps:
Expand Down
6 changes: 3 additions & 3 deletions scripts/generate-release-notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ fi

if is_runtime_release; then
echo "## Parachain runtime" >> "$1"
for CHAIN in rococo litentry; do
for CHAIN in rococo litentry paseo; do
SRTOOL_DIGEST_FILE=$CHAIN-parachain-runtime/$CHAIN-parachain-srtool-digest.json
RUNTIME_VERSION=$(grep spec_version runtime/$CHAIN/src/lib.rs | sed 's/.*version: //;s/,//')
RUNTIME_COMPRESSED_SIZE=$(cat "$SRTOOL_DIGEST_FILE" | jq .runtimes.compressed.size | sed 's/"//g')
Expand Down Expand Up @@ -256,12 +256,12 @@ EOF
commit=$(echo "$f" | cut -d'|' -f1)
desc=$(echo "$f" | cut -d'|' -f2)
output="- [\`$commit\`]($REPO/commit/$commit) $desc"

for ((i=0; i<${#labels[@]}; i++)); do
label=$(gh pr list --search "$commit" --label "${labels[i]}" --state merged)
[ -n "$label" ] && output+=" $REPO/labels/${labels[i]}"
done

echo "$output" >> "$1"
done
fi

0 comments on commit daed64f

Please sign in to comment.