You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have updated the module and the lambdas to the latest version (1.9.1) for the two module deployments that I have (Infra and QA) and now the checking of the extra labels are not happening and every time I run a job that is supposed to be just executed in the QA or Infra the request is passing in both webhooks. Looks like there is something wrong with the new lambda release.
I already have defined the proper values for this:
runner_enable_workflow_job_labels_check to true
runner_enable_workflow_job_labels_check_all to true
for the QA module:
runner_extra_labels = "${var.aws_env},qa"
For the Infra module:
runner_extra_labels = "${var.aws_env}".
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have updated the module and the lambdas to the latest version (1.9.1) for the two module deployments that I have (Infra and QA) and now the checking of the extra labels are not happening and every time I run a job that is supposed to be just executed in the QA or Infra the request is passing in both webhooks. Looks like there is something wrong with the new lambda release.
I already have defined the proper values for this:
runner_enable_workflow_job_labels_check to true
runner_enable_workflow_job_labels_check_all to true
for the QA module:
runner_extra_labels = "${var.aws_env},qa"
For the Infra module:
runner_extra_labels = "${var.aws_env}".
For the workflow files:
QA:
runs-on: [self-hosted, linux, x64, "${{ needs.set_vars.outputs.environment_name }}", qa]
Infra:
runs-on: [self-hosted, linux, x64, "${{ needs.set_vars.outputs.environment_name }}"]
Beta Was this translation helpful? Give feedback.
All reactions