Skip to content

Commit

Permalink
Add retest slash command
Browse files Browse the repository at this point in the history
Add workflows to enable the retest slash command defined in `tektoncd/plumbing`
to allow users to rerun failed jobs on PRs.
  • Loading branch information
AlanGreene authored and tekton-robot committed Jan 6, 2025
1 parent f7ab669 commit 93873c6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/chatops-retest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Rerun Failed Actions
on:
repository_dispatch:
types: [retest-command]

jobs:
retest:
name: Rerun Failed Actions
uses: tektoncd/plumbing/.github/workflows/_chatops_retest.yml@b3abc99873185dfb1d74064e4aa851478d6aaa7c
8 changes: 8 additions & 0 deletions .github/workflows/slash.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Slash Command Routing
on:
issue_comment:
types: [created]

jobs:
check_comments:
uses: tektoncd/plumbing/.github/workflows/_slash.yml@b3abc99873185dfb1d74064e4aa851478d6aaa7c

0 comments on commit 93873c6

Please sign in to comment.