Skip to content

Commit bc52644

Browse files
authored
DI-613: dim ingestion: capture more data (#88805)
1 parent 5f5fee1 commit bc52644

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

.github/actions/collect-test-data/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
using: 'composite'
2626
steps:
2727
- name: Collect test data
28-
uses: getsentry/action-collect-test-data@c0a2fd3f79d3867e2c8b486ccb1c4bf925477742 # v0.3.0
28+
uses: getsentry/action-collect-test-data@ac0b9ecb5dc7437c113051e4e6a70012ff02c6dc # 0.4.1
2929
with:
3030
path: ${{ inputs.artifact_path }}
3131
gcs_path: ${{ inputs.gcs_bucket }}/pytest/${{ github.repository }}/${{ github.workflow }}/${{ github.job }}${{ inputs.matrix_instance_number != '' && '/instance' || '' }}${{ inputs.matrix_instance_number != '' && inputs.matrix_instance_number || '' }}/${{ github.repository_id }}/${{ github.run_id }}/${{ github.run_attempt }}

.github/file-filters.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ backend_dependencies: &backend_dependencies
4040

4141
backend_build_changes: &backend_build_changes
4242
- '.github/workflows/backend.yml'
43+
- '.github/actions/collect-test-data/**'
4344
- '.pre-commit-config.yaml'
4445
- 'Makefile'
4546
- 'pyproject.toml'
@@ -75,6 +76,7 @@ acceptance: &acceptance
7576
- *frontend_all
7677
- *backend_all
7778
- '.github/workflows/acceptance.yml'
79+
- '.github/actions/collect-test-data/**'
7880

7981
api_docs: &api_docs
8082
- *backend_all

.github/workflows/acceptance.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
permissions:
5252
contents: read
5353
id-token: write
54+
actions: read # used for DIM metadata
5455
strategy:
5556
# This helps not having to run multiple jobs because one fails, thus, reducing resource usage
5657
# and reducing the risk that one of many runs would turn red again (read: intermittent tests)

.github/workflows/backend.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ jobs:
8181
permissions:
8282
contents: read
8383
id-token: write
84+
actions: read # used for DIM metadata
8485
strategy:
8586
# This helps not having to run multiple jobs because one fails, thus, reducing resource usage
8687
# and reducing the risk that one of many runs would turn red again (read: intermittent tests)

0 commit comments

Comments
 (0)