Automatically add labeled issues to tech debt project
This commit is contained in:
parent
f7f0cf1c61
commit
471e6a9e94
1 changed files with 16 additions and 0 deletions
16
.github/workflows/triage-labelled.yml
vendored
16
.github/workflows/triage-labelled.yml
vendored
|
@ -120,3 +120,19 @@ jobs:
|
||||||
with:
|
with:
|
||||||
project-url: https://github.com/orgs/vector-im/projects/57
|
project-url: https://github.com/orgs/vector-im/projects/57
|
||||||
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
||||||
|
|
||||||
|
tech_debt:
|
||||||
|
name: Add labelled issues to tech debt project
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: >
|
||||||
|
contains(github.event.issue.labels.*.name, 'A-Developer-Experience') ||
|
||||||
|
contains(github.event.issue.labels.*.name, 'A-Documentation') ||
|
||||||
|
contains(github.event.issue.labels.*.name, 'A-Packaging') ||
|
||||||
|
contains(github.event.issue.labels.*.name, 'A-Technical-Debt') ||
|
||||||
|
contains(github.event.issue.labels.*.name, 'A-Testing') ||
|
||||||
|
contains(github.event.issue.labels.*.name, 'Z-Flaky-Test') ||
|
||||||
|
steps:
|
||||||
|
- uses: actions/add-to-project@main
|
||||||
|
with:
|
||||||
|
project-url: https://github.com/orgs/vector-im/projects/101
|
||||||
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
||||||
|
|
Loading…
Reference in a new issue