forked from flutter/flutter
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from BlueBubblesApp/zach/flutter3/master-merge
Zach/flutter3/master merge
- Loading branch information
Showing
2,387 changed files
with
141,890 additions
and
51,833 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,66 @@ | ||
name: Request a cherry-pick. | ||
description: As a contributor, you would like to request that a feature be cherry-picked into a release. | ||
title: '[CP] <title>' | ||
labels: ['cp: review'] | ||
body: | ||
- type: input | ||
id: issue_link | ||
attributes: | ||
label: issue_link | ||
description: What is the link to the issue this cherry-pick is addressing? | ||
validations: | ||
required: true | ||
- type: input | ||
id: commit_hash | ||
attributes: | ||
label: Commit Hash | ||
description: What is the shortened commit hash that has been merged to master/main? | ||
validations: | ||
required: true | ||
- type: input | ||
id: impacted_users | ||
attributes: | ||
label: Impacted Users | ||
description: Approximately who will hit this issue (ex. all Flutter devs, Windows developers, all end-customers, apps using X framework feature)? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: impact_description | ||
attributes: | ||
label: Impact Description | ||
description: What is the impact (ex. visual jank on Samsung phones, app crash, cannot ship an iOS app)? Does it impact development (ex. flutter doctor crashes when Android Studio is installed), or the shipping production app (the app crashes on launch) | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: workaround | ||
attributes: | ||
label: Workaround | ||
description: Is there a workaround for this issue? | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: risk | ||
attributes: | ||
label: Risk | ||
description: What is the risk level of this cherry-pick? | ||
options: | ||
- low | ||
- medium | ||
- high | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: test_coverage | ||
attributes: | ||
label: Test Coverage | ||
description: Are you confident that your fix is well-tested by automated tests? | ||
options: | ||
- "yes" | ||
- "no" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: fix_steps | ||
attributes: | ||
label: Validation Steps | ||
description: What are the steps to validate that this fix works? |
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,18 @@ | ||
changelog: | ||
exclude: | ||
authors: | ||
- engine-flutter-autoroll | ||
- fluttergithubbot | ||
labels: | ||
- passed first triage | ||
- passed secondary triage | ||
categories: | ||
- title: Framework | ||
labels: | ||
- framework | ||
- title: Tooling | ||
labels: | ||
- tool | ||
- title: MacOS | ||
labels: | ||
- platform-mac |
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,54 @@ | ||
name: Scorecards supply-chain security | ||
on: | ||
# Only the default branch is supported. | ||
branch_protection_rule: | ||
push: | ||
branches: [ master ] | ||
|
||
# Declare default permissions as read only. | ||
permissions: read-all | ||
|
||
jobs: | ||
analysis: | ||
name: Scorecards analysis | ||
runs-on: ubuntu-latest | ||
if: ${{ github.repository == 'flutter/flutter' }} | ||
permissions: | ||
# Needed to upload the results to code-scanning dashboard. | ||
security-events: write | ||
actions: read | ||
contents: read | ||
|
||
steps: | ||
- name: "Checkout code" | ||
uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: "Run analysis" | ||
uses: ossf/scorecard-action@c1aec4ac820532bab364f02a81873c555a0ba3a1 | ||
with: | ||
results_file: results.sarif | ||
results_format: sarif | ||
# Read-only PAT token. To create it, | ||
# follow the steps in https://github.com/ossf/scorecard-action#pat-token-creation. | ||
repo_token: ${{ secrets.SCORECARD_READ_TOKEN }} | ||
# Publish the results to enable scorecard badges. For more details, see | ||
# https://github.com/ossf/scorecard-action#publishing-results. | ||
# For private repositories, `publish_results` will automatically be set to `false`, | ||
# regardless of the value entered here. | ||
publish_results: true | ||
|
||
# Upload the results as artifacts (optional). | ||
- name: "Upload artifact" | ||
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 | ||
with: | ||
name: SARIF file | ||
path: results.sarif | ||
retention-days: 5 | ||
|
||
# Upload the results to GitHub's code scanning dashboard. | ||
- name: "Upload to code-scanning" | ||
uses: github/codeql-action/upload-sarif@28eead240834b314f7def40f6fcba65d100d99b1 | ||
with: | ||
sarif_file: results.sarif |
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 |
---|---|---|
|
@@ -89,3 +89,7 @@ Pradumna Saraf <[email protected]> | |
Kai Yu <[email protected]> | ||
Denis Grafov <[email protected]> | ||
TheOneWithTheBraid <[email protected]> | ||
Alberto Miola <[email protected]> | ||
Twin Sun, LLC <[email protected]> | ||
Taskulu LDA <[email protected]> | ||
Jonathan Joelson <[email protected]> |
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 |
---|---|---|
|
@@ -2,8 +2,9 @@ | |
|
||
# Code of conduct | ||
|
||
We expect Flutter's contributors to act professionally and respectfully, and | ||
we expect our social spaces to be safe and dignified environments. | ||
The Flutter project expects Flutter's contributors to act professionally | ||
and respectfully. Flutter contributors are expected to maintain the safety | ||
and dignity of Flutter's social environments (such as GitHub and Discord). | ||
|
||
Specifically: | ||
|
||
|
@@ -13,10 +14,11 @@ Specifically: | |
|
||
Should you experience anything that makes you feel unwelcome in Flutter's | ||
community, please contact [[email protected]](mailto:[email protected]) | ||
or, if you prefer, directly contact someone on the team, for instance | ||
[Hixie](mailto:[email protected]) or [Tim](mailto:[email protected]). We will | ||
not tolerate harassment from anyone in Flutter's community, even outside | ||
of Flutter's public communication channels. | ||
or, if you prefer, directly contact someone on the project, for instance | ||
[Hixie](mailto:[email protected]) or [Tim](mailto:[email protected]). | ||
|
||
The Flutter project will not tolerate harassment in Flutter's | ||
community, even outside of Flutter's public communication channels. | ||
|
||
## Conflict resolution | ||
|
||
|
@@ -27,7 +29,7 @@ together, try to understand each other's points of view, and work to | |
find a design that addresses everyone's concerns. | ||
|
||
This is usually sufficient to resolve issues. If you cannot come to an | ||
agreement, ask for the advice of a more senior member of the team. | ||
agreement, ask for the advice of a more senior member of the project. | ||
|
||
Be wary of agreement by attrition, where one person argues a point | ||
repeatedly until other participants give up in the interests of moving | ||
|
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.