-
Notifications
You must be signed in to change notification settings - Fork 690
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into ao-try-fixing-zombienet-slashing
* master: (24 commits) GHW for building and publishing docker images (#1391) pallet asset-conversion additional quote tests (#1371) Remove deprecated `pallet_balances`'s `set_balance_deprecated` and `transfer` dispatchables (#1226) Fix PRdoc check (#1419) Fix the wasm runtime substitute caching bug (#1416) Bump enumn from 0.1.11 to 0.1.12 (#1412) RFC 14: Improve locking mechanism for parachains (#1290) Add PRdoc check (#1408) fmt fixes (#1413) Enforce a decoding limit in MultiAssets (#1395) Remove dynamic dispatch using `Ext` (#1399) Remove redundant calls to `borrow()` (#1393) Get rid of polling in `WarpSync` (#1265) Bump actions/checkout from 3 to 4 (#1398) Bump thiserror from 1.0.47 to 1.0.48 (#1396) Move Relay-Specific Shared Code to One Place (#1193) rust docs: add simple analytics (#1377) Contracts: Update read_sandbox (#1390) Extract block announce validation from `ChainSync` (#1170) [ci] Remove runtime-benchmarks from tests (#1335) ...
- Loading branch information
Showing
254 changed files
with
3,281 additions
and
3,709 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Check PRdoc | ||
|
||
on: | ||
pull_request: | ||
types: [labeled, opened, synchronize, unlabeled] | ||
|
||
env: | ||
# todo: switch to paritytech/prdoc once the container is built & published | ||
# see https://github.com/paritytech/scripts/pull/595 | ||
IMAGE: chevdor/prdoc:v0.0.4 | ||
API_BASE: https://api.github.com/repos | ||
REPO: ${{ github.repository }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_PR: ${{ github.event.pull_request.number }} | ||
MOUNT: /prdoc | ||
ENGINE: docker | ||
|
||
jobs: | ||
check-prdoc: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Pull image | ||
run: | | ||
echo "Pulling $IMAGE" | ||
docker pull $IMAGE | ||
docker run --rm $IMAGE --version | ||
- name: Check if PRdoc is required | ||
id: get-labels | ||
run: | | ||
# Fetch the labels for the PR under test | ||
echo "Fetch the labels for $API_BASE/${REPO}/pulls/${GITHUB_PR}" | ||
labels=$( curl -H "Authorization: token ${GITHUB_TOKEN}" -s "$API_BASE/${REPO}/pulls/${GITHUB_PR}" | jq '.labels | .[] | .name' | tr "\n" ",") | ||
echo "Labels: ${labels}" | ||
echo "labels=${labels}" >> "$GITHUB_OUTPUT" | ||
- name: No PRdoc required | ||
if: ${{ contains(steps.get-labels.outputs.labels, 'R0') }} | ||
run: | | ||
echo "PR detected as silent, no PRdoc is required, exiting..." | ||
exit 0 | ||
- name: Checkout repo | ||
if: ${{ !contains(steps.get-labels.outputs.labels, 'R0') }} | ||
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac #v4.0.0 | ||
|
||
- name: PRdoc check for PR#${{ github.event.pull_request.number }} | ||
if: ${{ !contains(steps.get-labels.outputs.labels, 'R0') }} | ||
run: | | ||
echo "Checking for PR#${GITHUB_PR} in $MOUNT" | ||
$ENGINE run --rm -v $PWD/prdoc:/doc $IMAGE check -n ${GITHUB_PR} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.