Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add polkadot output to Subalfred #482

Merged
merged 1 commit into from
Feb 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .github/workflows/polkadot-version-upgrade-ticket.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,22 @@ jobs:
SUBALFRED_VERSION: 0.9.1
run: cargo install --version $SUBALFRED_VERSION --git https://github.com/hack-ink/subalfred.git subalfred
- name: Run subalfred for Substrate
id: subalfred-substrate
env:
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
run: |
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
echo "SUBALFRED_SUBSTRATE_OUTPUT<<$EOF" >> $GITHUB_ENV
subalfred track-updates paritytech/substrate --from polkadot-v${{ inputs.current-version }} --to polkadot-v${{ inputs.target-version }} >> $GITHUB_ENV
echo "$EOF" >> $GITHUB_ENV
- name: Run subalfred for Polkadot
env:
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
run: |
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
echo "SUBALFRED_POLKADOT_OUTPUT<<$EOF" >> $GITHUB_ENV
subalfred track-updates paritytech/polkadot --from release-v${{ inputs.current-version }} --to release-v${{ inputs.target-version }} >> $GITHUB_ENV
echo "$EOF" >> $GITHUB_ENV
- name: Run subalfred for Cumulus
id: subalfred-cumulus
env:
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
run: |
Expand All @@ -58,6 +64,9 @@ jobs:
## Substrate changes
${{ env.SUBALFRED_SUBSTRATE_OUTPUT }}

## Polkadot changes
${{ env.SUBALFRED_POLKADOT_OUTPUT }}

## Cumulus changes
${{ env.SUBALFRED_CUMULUS_OUTPUT }}
labels: kiltbot, ⛓ KILT node
Expand Down