Skip to content

Commit 346cd45

Browse files
authored
chore: Fix Delete Experiment GHA (#1546)
1 parent 08cdcc3 commit 346cd45

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/delete-experiment.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ name: Delete Experiment
66
on:
77
workflow_dispatch:
88
inputs:
9-
nr_environment:
10-
description: 'Target New Relic environment'
11-
required: true
12-
type: choice
13-
options:
14-
- dev
15-
- staging
9+
nr_environment:
10+
description: 'Target New Relic environment'
11+
required: true
12+
type: choice
13+
options:
14+
- dev
15+
- staging
16+
- standalone
1617

1718
jobs:
1819
delete-experiment-on-s3:
@@ -37,4 +38,4 @@ jobs:
3738
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
3839
aws_role: ${{ secrets.AWS_ROLE_ARN }}
3940
aws_bucket_name: ${{ secrets.AWS_BUCKET }}
40-
bucket_dir: experiments/${{ inputs.nr_environment }}/${{ steps.clean-branch-name.outputs.results }}
41+
bucket_dir: experiments/${{ github.event.inputs.nr_environment }}/${{ steps.clean-branch-name.outputs.results }}

0 commit comments

Comments
 (0)