schildi-web/.github/workflows/triage-move-unlabelled.yml
Kat Gerasimova c0a7437c20
Reference commits instead of tags in workflows (#19597)
This is better in case the tag is ever assigned to another commit.

Signed-off-by: Ekaterina Gerasimova <ekaterinag@element.io>
2021-11-03 12:42:46 +00:00

23 lines
774 B
YAML

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: >
${{
(github.event.project_card.project_card.column_id == 15439170 ||
github.event.project_card.project_card.column_id == 16669396 ||
github.event.project_card.project_card.column_id == 16669398) &&
!contains(github.event.issue.labels.*.name, 'X-Needs-Info') }}
steps:
- uses: alex-page/github-project-automation-plus@bb266ff4dde9242060e2d5418e120a133586d488
with:
project: Issue triage
column: Triaged
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }}