We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab81a50 commit 63f61a3Copy full SHA for 63f61a3
.github/workflows/issues_stats.yml
@@ -17,10 +17,15 @@ concurrency:
17
18
jobs:
19
issue:
20
- name: 'Ingest'
21
- uses: elastic/clients-team-automations/.github/workflows/issues_stats.yml@main
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 }}
+ name: Ingest
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+
+ - name: Ingest Issue
27
+ uses: elastic/clients-team-automations/issues_stats@main
28
+ with:
29
+ issue_payload: ${{ toJSON(github.event.issue) }}
30
+ es_cloud_id: ${{ vars.ES_CLOUD_ID }}
31
+ es_api_key: ${{ secrets.ES_API_KEY }}
0 commit comments