Skip to content

Commit

Permalink
Add issue statistics workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
flobernd committed Apr 24, 2024
1 parent 4f15d48 commit f163693
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/issues_stats.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: 'Ingest Issue'

on:
issues:
types:
- opened
- edited
- closed
- deleted
- reopened
- labeled
- unlabeled

concurrency:
group: 'issue-stats-${{github.event.issue.id}}'
cancel-in-progress: false

jobs:
issue:
name: 'Ingest'
uses: elastic/clients-team-automations/.github/workflows/issues_stats.yml
with:
issue_payload: ${{ toJSON(github.event.issue) }}
secrets:
ES_CLOUD_ID: ${{ vars.ES_CLOUD_ID }}
ES_API_KEY: ${{ secrets.ES_API_KEY }}

0 comments on commit f163693

Please sign in to comment.