Skip to content

Commit

Permalink
🌱 one workflow for issue(-comments) (#494)
Browse files Browse the repository at this point in the history
Signed-off-by: David Zager <[email protected]>
  • Loading branch information
djzager authored Feb 7, 2024
1 parent d4499bf commit 37c4f36
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 31 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/issue-comment.yaml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/issue.yaml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/issues.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Reconcile GitHub Issue (Comment)

on:
issues:
types:
- opened
- edited
- closed
- reopened
- labeled
- unlabeled
issue_comment:
types:
- created
- edited

jobs:
reconcile-issue:
if: github.event_name == 'issues' || github.event_name == 'pull_request'
secrets: inherit
uses: konveyor/release-tools/.github/workflows/reconcile-issue.yaml@main

reconcile-issue-comment:
if: github.event_name == 'issue_comment'
secrets: inherit
uses: konveyor/release-tools/.github/workflows/reconcile-issue-comment.yaml@main

0 comments on commit 37c4f36

Please sign in to comment.