-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/tchap_v1.99.3' into main
- Loading branch information
Showing
705 changed files
with
11,896 additions
and
7,386 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
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,124 @@ | ||
name: Move labelled issues to correct boards and columns | ||
|
||
on: | ||
issues: | ||
types: [labeled] | ||
|
||
jobs: | ||
move_needs_info_issues: | ||
name: Move X-Needs-Info issues to Need info on triage board | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: konradpabjan/move-labeled-or-milestoned-issue@219d384e03fa4b6460cd24f9f37d19eb033a4338 | ||
with: | ||
action-token: "${{ secrets.ELEMENT_BOT_TOKEN }}" | ||
project-url: "/~https://github.com/vector-im/element-android/projects/4" | ||
column-name: "Need info" | ||
label-name: "X-Needs-Info" | ||
|
||
add_priority_design_issues_to_project: | ||
name: Move priority X-Needs-Design issues to Design project board | ||
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'X-Needs-Design') && | ||
(contains(github.event.issue.labels.*.name, 'O-Frequent') || | ||
contains(github.event.issue.labels.*.name, 'O-Occasional')) && | ||
(contains(github.event.issue.labels.*.name, 'S-Critical') || | ||
contains(github.event.issue.labels.*.name, 'S-Major') || | ||
contains(github.event.issue.labels.*.name, 'S-Minor')) | ||
steps: | ||
- uses: octokit/graphql-action@v2.x | ||
id: add_to_project | ||
with: | ||
headers: '{"GraphQL-Features": "projects_next_graphql"}' | ||
query: | | ||
mutation add_to_project($projectid:String!,$contentid:String!) { | ||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) { | ||
projectNextItem { | ||
id | ||
} | ||
} | ||
} | ||
projectid: ${{ env.PROJECT_ID }} | ||
contentid: ${{ github.event.issue.node_id }} | ||
env: | ||
PROJECT_ID: "PN_kwDOAM0swc0sUA" | ||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
move_spaces_issues: | ||
name: Move Spaces issues to Delight project board | ||
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'A-Spaces') || | ||
contains(github.event.issue.labels.*.name, 'A-Space-Settings') || | ||
contains(github.event.issue.labels.*.name, 'A-Subspaces') | ||
steps: | ||
- uses: konradpabjan/move-labeled-or-milestoned-issue@219d384e03fa4b6460cd24f9f37d19eb033a4338 | ||
with: | ||
action-token: "${{ secrets.ELEMENT_BOT_TOKEN }}" | ||
project-url: "/~https://github.com/orgs/vector-im/projects/6" | ||
column-name: "📥 Inbox" | ||
label-name: "A-Spaces" | ||
- uses: octokit/graphql-action@v2.x | ||
id: add_to_delight2 | ||
with: | ||
headers: '{"GraphQL-Features": "projects_next_graphql"}' | ||
query: | | ||
mutation add_to_project($projectid:String!,$contentid:String!) { | ||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) { | ||
projectNextItem { | ||
id | ||
} | ||
} | ||
} | ||
projectid: ${{ env.PROJECT_ID }} | ||
contentid: ${{ github.event.issue.node_id }} | ||
env: | ||
PROJECT_ID: "PN_kwDOAM0swc1HvQ" | ||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
move_voice-message_issues: | ||
name: Move A-Voice Messages to Voice message board | ||
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'A-Voice Messages') | ||
steps: | ||
- uses: octokit/graphql-action@v2.x | ||
with: | ||
headers: '{"GraphQL-Features": "projects_next_graphql"}' | ||
query: | | ||
mutation add_to_project($projectid:String!,$contentid:String!) { | ||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) { | ||
projectNextItem { | ||
id | ||
} | ||
} | ||
} | ||
projectid: ${{ env.PROJECT_ID }} | ||
contentid: ${{ github.event.issue.node_id }} | ||
env: | ||
PROJECT_ID: "PN_kwDOAM0swc2KCw" | ||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
move_threads_issues: | ||
name: Move A-Threads to Thread board | ||
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'A-Threads') | ||
steps: | ||
- uses: octokit/graphql-action@v2.x | ||
with: | ||
headers: '{"GraphQL-Features": "projects_next_graphql"}' | ||
query: | | ||
mutation add_to_project($projectid:String!,$contentid:String!) { | ||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) { | ||
projectNextItem { | ||
id | ||
} | ||
} | ||
} | ||
projectid: ${{ env.PROJECT_ID }} | ||
contentid: ${{ github.event.issue.node_id }} | ||
env: | ||
PROJECT_ID: "PN_kwDOAM0swc0rRA" | ||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Move unlabelled from needs info columns to triaged | ||
|
||
on: | ||
issues: | ||
types: [unlabeled] | ||
|
||
jobs: | ||
Move_Unabeled_Issue_On_Project_Board: | ||
name: Move no longer X-Needs-Info issues to Triaged | ||
runs-on: ubuntu-latest | ||
if: > | ||
${{ | ||
!contains(github.event.issue.labels.*.name, 'X-Needs-Info') }} | ||
env: | ||
BOARD_NAME: "Issue triage" | ||
OWNER: ${{ github.repository_owner }} | ||
REPO: ${{ github.event.repository.name }} | ||
ISSUE: ${{ github.event.issue.number }} | ||
steps: | ||
- name: Check if issue is already in "${{ env.BOARD_NAME }}" | ||
run: | | ||
if curl -i -H 'Content-Type: application/json' -H "Authorization: bearer ${{ secrets.GITHUB_TOKEN }}" -X POST -d '{"query": "query($issue: Int!, $owner: String!, $repo: String!) { repository(owner: $owner, name: $repo) { issue(number: $issue) { projectCards { nodes { project { name } } } } } } ", "variables" : "{ \"issue\": '${ISSUE}', \"owner\": \"'${OWNER}'\", \"repo\": \"'${REPO}'\" }" }' https://api.github.com/graphql | grep "\b$BOARD_NAME\b"; then | ||
echo "Issue is already in Project '$BOARD_NAME', proceeding"; | ||
echo "ALREADY_IN_BOARD=true" >> $GITHUB_ENV | ||
else | ||
echo "Issue is not in project '$BOARD_NAME', cancelling this workflow" | ||
echo "ALREADY_IN_BOARD=false" >> $GITHUB_ENV | ||
fi | ||
- name: Move issue | ||
uses: alex-page/github-project-automation-plus@bb266ff4dde9242060e2d5418e120a133586d488 | ||
if: ${{ env.ALREADY_IN_BOARD == 'true' }} | ||
with: | ||
project: Issue triage | ||
column: Triaged | ||
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Move P1 issues into the P1 column for the App Team and Crypto team | ||
|
||
on: | ||
issues: | ||
types: [labeled, unlabeled] | ||
|
||
jobs: | ||
p1_issues_to_team_workboard: | ||
runs-on: ubuntu-latest | ||
if: > | ||
(!contains(github.event.issue.labels.*.name, 'A-E2EE') && | ||
!contains(github.event.issue.labels.*.name, 'A-E2EE-Cross-Signing') && | ||
!contains(github.event.issue.labels.*.name, 'A-E2EE-Dehydration') && | ||
!contains(github.event.issue.labels.*.name, 'A-E2EE-Key-Backup') && | ||
!contains(github.event.issue.labels.*.name, 'A-E2EE-SAS-Verification') && | ||
!contains(github.event.issue.labels.*.name, 'A-Spaces') && | ||
!contains(github.event.issue.labels.*.name, 'A-Spaces-Settings') && | ||
!contains(github.event.issue.labels.*.name, 'A-Subspaces')) && | ||
(contains(github.event.issue.labels.*.name, 'T-Defect') && | ||
contains(github.event.issue.labels.*.name, 'S-Critical') && | ||
(contains(github.event.issue.labels.*.name, 'O-Frequent') || | ||
contains(github.event.issue.labels.*.name, 'O-Occasional')) || | ||
contains(github.event.issue.labels.*.name, 'S-Major') && | ||
contains(github.event.issue.labels.*.name, 'O-Frequent') || | ||
contains(github.event.issue.labels.*.name, 'A11y') && | ||
contains(github.event.issue.labels.*.name, 'O-Frequent')) | ||
steps: | ||
- uses: alex-page/github-project-automation-plus@bb266ff4dde9242060e2d5418e120a133586d488 | ||
with: | ||
project: Android App Team | ||
column: P1 | ||
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
P1_issues_to_crypto_team_workboard: | ||
runs-on: ubuntu-latest | ||
if: > | ||
(contains(github.event.issue.labels.*.name, 'A-E2EE') || | ||
contains(github.event.issue.labels.*.name, 'A-E2EE-Cross-Signing') || | ||
contains(github.event.issue.labels.*.name, 'A-E2EE-Dehydration') || | ||
contains(github.event.issue.labels.*.name, 'A-E2EE-Key-Backup') || | ||
contains(github.event.issue.labels.*.name, 'A-E2EE-SAS-Verification')) && | ||
(contains(github.event.issue.labels.*.name, 'T-Defect') && | ||
contains(github.event.issue.labels.*.name, 'S-Critical') && | ||
(contains(github.event.issue.labels.*.name, 'O-Frequent') || | ||
contains(github.event.issue.labels.*.name, 'O-Occasional')) || | ||
contains(github.event.issue.labels.*.name, 'S-Major') && | ||
contains(github.event.issue.labels.*.name, 'O-Frequent') || | ||
contains(github.event.issue.labels.*.name, 'A11y') && | ||
contains(github.event.issue.labels.*.name, 'O-Frequent')) | ||
steps: | ||
- uses: alex-page/github-project-automation-plus@bb266ff4dde9242060e2d5418e120a133586d488 | ||
with: | ||
project: Crypto Team | ||
column: Ready | ||
repo-token: ${{ secrets.ELEMENT_BOT_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
Oops, something went wrong.