Skip to content

Commit

Permalink
🌱 add issues workflow (#93)
Browse files Browse the repository at this point in the history
Signed-off-by: David Zager <[email protected]>
  • Loading branch information
djzager authored Jul 15, 2024
1 parent 09d506b commit cdf5fbd
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/issues.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Reconcile GitHub Issue (Comment)

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

concurrency:
group: reconcile-issue-${{ github.event.issue.number }}-${{ github.event_name }}
cancel-in-progress: true

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

reconcile-issue-comment:
if: github.event_name == 'issue_comment'
secrets: inherit
uses: ./.github/workflows/reconcile-issue-comment.yaml

0 comments on commit cdf5fbd

Please sign in to comment.