Skip to content

Commit

Permalink
test: add github workflow to auto-assign failed test issue to solid t…
Browse files Browse the repository at this point in the history
…ests project (tikv#7102)

Signed-off-by: glorv <glorvs@163.com>
  • Loading branch information
glorv committed Mar 16, 2020
1 parent 6b0767b commit 8ce5e98
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/assign_failed_test_project.yml
@@ -0,0 +1,21 @@
name: Auto Assign Failed Test Issue to Solid Tests Project

on:
issues:
types: [created]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
assign_bench_test_project:
runs-on: ubuntu-latest
name: Assign to Solid Tests Project
steps:
- name: Run issues assignment to project Solid Tests Kanban
uses: srggrs/assign-one-project-github-action@1.2.0
if: |
github.event.issue.user.login == 'sre-bot' &&
contains(github.event.issue.labels.*.name, 'component/test-bench')
with:
project: 'https://github.com/tikv/tikv/projects/14'
column_name: 'To do(in history)'

0 comments on commit 8ce5e98

Please sign in to comment.