2021-11-04 11:44:33 +01:00
|
|
|
name: Move labelled issues to correct boards and columns
|
2021-11-02 21:54:00 +01:00
|
|
|
|
|
|
|
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:
|
2021-11-04 12:43:12 +01:00
|
|
|
- uses: konradpabjan/move-labeled-or-milestoned-issue@219d384e03fa4b6460cd24f9f37d19eb033a4338
|
|
|
|
with:
|
|
|
|
action-token: "${{ secrets.ELEMENT_BOT_TOKEN }}"
|
|
|
|
project-url: "https://github.com/vector-im/element-web/projects/27"
|
|
|
|
column-name: "Need info"
|
|
|
|
label-name: "X-Needs-Info"
|
2021-11-02 21:54:00 +01:00
|
|
|
|
2021-11-05 22:12:49 +01:00
|
|
|
add_priority_design_issues_to_project:
|
2021-11-02 21:54:00 +01:00
|
|
|
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') &&
|
2021-11-08 15:44:22 +01:00
|
|
|
contains(github.event.issue.labels.*.name, 'S-Critical') &&
|
2021-11-02 21:54:00 +01:00
|
|
|
(contains(github.event.issue.labels.*.name, 'O-Frequent') ||
|
2021-11-08 15:44:22 +01:00
|
|
|
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')
|
2021-11-02 21:54:00 +01:00
|
|
|
steps:
|
2021-11-05 22:12:49 +01:00
|
|
|
- uses: octokit/graphql-action@v2.x
|
|
|
|
id: add_to_project
|
2021-11-02 21:54:00 +01:00
|
|
|
with:
|
2021-11-05 22:12:49 +01:00
|
|
|
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 }}
|
2021-11-02 21:54:00 +01:00
|
|
|
|
|
|
|
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:
|
2021-11-03 13:42:46 +01:00
|
|
|
- uses: konradpabjan/move-labeled-or-milestoned-issue@219d384e03fa4b6460cd24f9f37d19eb033a4338
|
2021-11-02 21:54:00 +01:00
|
|
|
with:
|
|
|
|
action-token: "${{ secrets.ELEMENT_BOT_TOKEN }}"
|
|
|
|
project-url: "https://github.com/orgs/vector-im/projects/6"
|
|
|
|
column-name: "📥 Inbox"
|
|
|
|
label-name: "A-Spaces"
|
2021-11-08 15:44:05 +01:00
|
|
|
- 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 }}
|
2021-11-04 16:45:28 +01:00
|
|
|
|
|
|
|
move_voice-message_issues:
|
|
|
|
name: Move A-Voice Messages to Voice message board
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
2021-11-10 17:42:18 +01:00
|
|
|
contains(github.event.issue.labels.*.name, 'A-Voice Messages')
|
2021-11-04 16:45:28 +01:00
|
|
|
steps:
|
|
|
|
- uses: konradpabjan/move-labeled-or-milestoned-issue@219d384e03fa4b6460cd24f9f37d19eb033a4338
|
|
|
|
with:
|
|
|
|
action-token: "${{ secrets.ELEMENT_BOT_TOKEN }}"
|
|
|
|
project-url: "https://github.com/vector-im/element-web/projects/28"
|
|
|
|
column-name: "📥 Inbox"
|
|
|
|
label-name: "A-Voice Messages"
|
2021-11-09 16:10:19 +01:00
|
|
|
- uses: octokit/graphql-action@v2.x
|
|
|
|
id: add_to_voice
|
|
|
|
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 }}
|
2021-11-16 15:04:11 +01:00
|
|
|
|
|
|
|
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 }}
|