This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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 crystalin-add-evm-log
- Loading branch information
Showing
735 changed files
with
38,445 additions
and
18,329 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
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@master | ||
if: github.event.issue.author_association == 'NONE' | ||
with: | ||
add-labels: 'Z0-unconfirmed' |
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 @@ | ||
name: Notify devops when burn-in label applied | ||
on: | ||
pull_request: | ||
types: [labeled] | ||
|
||
jobs: | ||
notify-devops: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Notify devops | ||
if: github.event.label.name == 'A1-needsburnin' | ||
uses: s3krit/matrix-message-action@v0.0.2 | ||
with: | ||
room_id: ${{ secrets.POLKADOT_DEVOPS_MATRIX_ROOM_ID }} | ||
access_token: ${{ secrets.POLKADOT_DEVOPS_MATRIX_ACCESS_TOKEN }} | ||
message: "@room Burn-in request received for [${{ github.event.pull_request.title }}](${{ github.event.pull_request.html_url }})" | ||
server: "matrix.parity.io" |
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.