Skip to content

Commit f163693

Browse files
committed
Add issue statistics workflow
1 parent 4f15d48 commit f163693

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/issues_stats.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: 'Ingest Issue'
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
- edited
8+
- closed
9+
- deleted
10+
- reopened
11+
- labeled
12+
- unlabeled
13+
14+
concurrency:
15+
group: 'issue-stats-${{github.event.issue.id}}'
16+
cancel-in-progress: false
17+
18+
jobs:
19+
issue:
20+
name: 'Ingest'
21+
uses: elastic/clients-team-automations/.github/workflows/issues_stats.yml
22+
with:
23+
issue_payload: ${{ toJSON(github.event.issue) }}
24+
secrets:
25+
ES_CLOUD_ID: ${{ vars.ES_CLOUD_ID }}
26+
ES_API_KEY: ${{ secrets.ES_API_KEY }}

0 commit comments

Comments
 (0)