-
Notifications
You must be signed in to change notification settings - Fork 789
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 oleg/ci_cd/#860
- Loading branch information
Showing
524 changed files
with
3,638 additions
and
2,319 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# If the author of the issues is not a contributor to the project, label | ||
# the issue with 'Z0-unconfirmed' | ||
|
||
name: Label New Issues | ||
on: | ||
issues: | ||
types: [opened] | ||
|
||
jobs: | ||
label-new-issues: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Label drafts | ||
uses: andymckay/labeler@e6c4322d0397f3240f0e7e30a33b5c5df2d39e90 # 1.0.4 | ||
if: github.event.issue.author_association == 'NONE' | ||
with: | ||
add-labels: "I10-unconfirmed" |
This file was deleted.
Oops, something went wrong.
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,36 @@ | ||
name: Check licenses | ||
|
||
on: | ||
pull_request: | ||
|
||
permissions: | ||
packages: read | ||
|
||
jobs: | ||
check-licenses: | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
repo: [polkadot, substrate, cumulus] | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3.8.1 | ||
with: | ||
node-version: "18.x" | ||
registry-url: "https://npm.pkg.github.com" | ||
scope: "@paritytech" | ||
- name: Check the licenses for ${{ matrix.repo }} | ||
run: | | ||
shopt -s globstar | ||
echo "install" | ||
npm install -g @paritytech/license-scanner@0.0.5 | ||
echo "run for ${{ matrix.repo }}" | ||
cd ${{ matrix.repo }} | ||
npx @paritytech/license-scanner scan \ | ||
--ensure-licenses=Apache-2.0 \ | ||
--ensure-licenses=GPL-3.0-only \ | ||
./**/*.rs | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 |
---|---|---|
@@ -1,15 +1,42 @@ | ||
target/ | ||
**/target/ | ||
!polkadot.service | ||
.cargo-remote.toml | ||
.direnv/ | ||
.DS_Store | ||
.env* | ||
.idea | ||
.local | ||
.vscode | ||
.DS_Store | ||
/.cargo/config | ||
polkadot_argument_parsing | ||
**/node_modules | ||
**/chains/ | ||
.wasm-binaries | ||
*.bin | ||
*.iml | ||
.env | ||
*.orig | ||
*.rej | ||
*.swp | ||
**/._* | ||
|
||
cargo_home | ||
cargo_target_dir | ||
|
||
**/.criterion/ | ||
**/*.rs.bk | ||
**/chains/ | ||
**/hfuzz_target/ | ||
**/hfuzz_workspace/ | ||
**/node_modules | ||
**/target/ | ||
**/wip/*.stderr | ||
/.cargo/config | ||
/.envrc | ||
artifacts | ||
bin/node-template/Cargo.lock | ||
nohup.out | ||
polkadot_argument_parsing | ||
polkadot.* | ||
pwasm-alloc/Cargo.lock | ||
pwasm-libc/Cargo.lock | ||
release-artifacts | ||
release.json | ||
rls*.log | ||
runtime/wasm/target/ | ||
substrate.code-workspace | ||
target/ |
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.