-
Notifications
You must be signed in to change notification settings - Fork 498
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
899 changed files
with
96,565 additions
and
2,708 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
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,134 @@ | ||
name: Move labelled issues to correct boards and columns | ||
|
||
on: | ||
issues: | ||
types: [labeled] | ||
|
||
jobs: | ||
move_needs_info_issues: | ||
name: X-Needs-Info issues to Need info column 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-ios/projects/12" | ||
column-name: "Need info" | ||
label-name: "X-Needs-Info" | ||
|
||
add_priority_design_issues_to_project: | ||
name: P1 X-Needs-Design to Design project board | ||
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'X-Needs-Design') && | ||
(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: octokit/[email protected] | ||
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 }} | ||
|
||
spaces_issues_to_old_board: | ||
name: Spaces issues to old 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" | ||
|
||
spaces_issues_to_new_board: | ||
name: Spaces issues to new 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: octokit/[email protected] | ||
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: A-Voice Messages to voice message board | ||
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'A-Voice Messages') | ||
steps: | ||
- uses: octokit/[email protected] | ||
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: A-Threads to Thread board | ||
runs-on: ubuntu-latest | ||
if: > | ||
contains(github.event.issue.labels.*.name, 'A-Threads') | ||
steps: | ||
- uses: octokit/[email protected] | ||
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 bugs to boards | ||
|
||
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: iOS 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 }} |
Oops, something went wrong.