Skip to content

fix: account for extra long job names #488

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 25 commits into from
Aug 3, 2025
Merged

Conversation

rdhar
Copy link
Member

@rdhar rdhar commented Aug 1, 2025

Aims to resolve #482 with a workaround until GitHub introduces job.check_run_id officially.

Fixed

  • Job ID determination for matrix strategy with names exceeding 100 characters (thank you, @karolba).

Usually, GitHub's naming convention for matrices follow: <job_name> (matrix_1, matrix_2) and so on for each matrix. When this exceeds 100 characters, GitHub follows: <job_name> (matrix_1, matrix... wherein the string is truncated with ... ellipsis, without closing ) closing parenthesis.

Previously, TF-via-PR:

  • Looked for job names which contain the matrices entirely.
  • Failed when the name was truncated to 100 characters, thereby failing to find a complete match.

Currently, TF-via-PR:

  • Drops everything up to and including ( opening parenthesis.
  • Drops ) closing parenthesis, if present.
  • Drops ... ellipsis, if present.
  • Looks for job name which is inside the matrices instead.

Since the job name identifier is a string of variable length, we don't know how many character of the matrix we have to match against. As a result, recommend prioritising unique/identifiable matrix earlier in the job for the highest likelihood of finding the correct match (note to self: avoid writing code which has any chance of "likelihood" in the first place).

Signed-off-by: Rishav Dhar <[email protected]>
Copy link

github-actions bot commented Aug 1, 2025

tofu plan -chdir=tests/pass_one -refresh=true
Diff of 1 change.
+ random_pet.name[0] will be created
Plan: 1 to add, 0 to change, 0 to destroy.
By @rdhar at 2025-08-03T12:18:03Z (view log).
OpenTofu used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
  + create

OpenTofu will perform the following actions:

  # random_pet.name[0] will be created
  + resource "random_pet" "name" {
      + id        = (known after apply)
      + length    = 2
      + separator = "-"
    }

Plan: 1 to add, 0 to change, 0 to destroy.

rdhar added 7 commits August 2, 2025 00:16
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Copy link

github-actions bot commented Aug 2, 2025

tofu plan -chdir=tests/pass_one_pass_two_pass_three_pass_four_pass_five_pass_six_pass_seven_pass_eight_pass_nine
Diff of 1 change.
+ random_pet.name[0] will be created
Plan: 1 to add, 0 to change, 0 to destroy.
By rdhar at 2025-08-02T00:24:21Z (view log).
OpenTofu used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
  + create

OpenTofu will perform the following actions:

  # random_pet.name[0] will be created
  + resource "random_pet" "name" {
      + id        = (known after apply)
      + length    = 2
      + separator = "-"
    }

Plan: 1 to add, 0 to change, 0 to destroy.

rdhar added 5 commits August 2, 2025 01:26
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Copy link

github-actions bot commented Aug 3, 2025

tofu plan -chdir=tests/pass_one_pass_two_pass_three_pass_four_pass_five_pass_six_pass_seven_pass_eight_pass_nines -refresh=true
Diff of 1 change.
+ random_pet.name[0] will be created
Plan: 1 to add, 0 to change, 0 to destroy.
By @rdhar at 2025-08-03T12:08:41Z (view log).
OpenTofu used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
  + create

OpenTofu will perform the following actions:

  # random_pet.name[0] will be created
  + resource "random_pet" "name" {
      + id        = (known after apply)
      + length    = 2
      + separator = "-"
    }

Plan: 1 to add, 0 to change, 0 to destroy.

rdhar added 11 commits August 3, 2025 13:11
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Signed-off-by: Rishav Dhar <[email protected]>
Copy link

github-actions bot commented Aug 3, 2025

tofu apply -chdir=tests/pass_one -workspace=dev
Diff of 1 change.
+ random_pet.name[0] will be created
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
By rdhar at 2025-08-03T12:43:59Z (view log).
random_pet.name[0]: Creating...
random_pet.name[0]: Creation complete after 0s [id=humble-mastiff]

Apply complete! Resources: 1 added, 0 changed, 0 destroyed.

Copy link

github-actions bot commented Aug 3, 2025

tofu validate -chdir=tests/fail_invalid_resource_type -workspace=dev
Error: Invalid resource type
By rdhar at 2025-08-03T12:43:59Z (view log).
Error: Invalid resource type

  on main.tf line 1, in resource "random_pets" "name":
   1: resource "random_pets" "name" {

The provider hashicorp/random does not support resource type "random_pets".
Did you mean "random_pet"?

Copy link

github-actions bot commented Aug 3, 2025

tofu fmt -chdir=tests/fail_format_diff -check -diff -recursive -workspace=dev
View output.
By rdhar at 2025-08-03T12:43:59Z (view log).
main.tf
--- old/main.tf
+++ new/main.tf
@@ -1,3 +1,3 @@
 resource "random_pet" "name" {
-  count =1
+  count = 1
 }

Copy link

github-actions bot commented Aug 3, 2025

tofu validate -chdir=tests/fail_data_source_error -workspace=dev
Success! The configuration is valid.
By rdhar at 2025-08-03T12:43:59Z (view log).
Success! The configuration is valid.

Copy link

github-actions bot commented Aug 3, 2025

tofu apply -chdir=tests/pass_character_limit -workspace=dev
Diff of 10000 changes.
+ random_pet.name[0] will be created
+ random_pet.name[1] will be created
+ random_pet.name[2] will be created
+ random_pet.name[3] will be created
+ random_pet.name[4] will be created
+ random_pet.name[5] will be created
+ random_pet.name[6] will be created
+ random_pet.name[7] will be created
+ random_pet.name[8] will be created
+ random_pet.name[9] will be created
+ random_pet.name[10] will be created
+ random_pet.name[11] will be created
+ random_pet.name[12] will be created
+ random_pet.name[13] will be created
+ random_pet.name[14] will be created
+ random_pet.name[15] will be created
+ random_pet.name[16] will be created
+ random_pet.name[17] will be created
+ random_pet.name[18] will be created
+ random_pet.name[19] will be created
+ random_pet.name[20] will be created
+ random_pet.name[21] will be created
+ random_pet.name[22] will be created
+ random_pet.name[23] will be created
+ random_pet.name[24] will be created
+ random_pet.name[25] will be created
+ random_pet.name[26] will be created
+ random_pet.name[27] will be created
+ random_pet.name[28] will be created
+ random_pet.name[29] will be created
+ random_pet.name[30] will be created
+ random_pet.name[31] will be created
+ random_pet.name[32] will be created
+ random_pet.name[33] will be created
+ random_pet.name[34] will be created
+ random_pet.name[35] will be created
+ random_pet.name[36] will be created
+ random_pet.name[37] will be created
+ random_pet.name[38] will be created
+ random_pet.name[39] will be created
+ random_pet.name[40] will be created
+ random_pet.name[41] will be created
+ random_pet.name[42] will be created
+ random_pet.name[43] will be created
+ random_pet.name[44] will be created
+ random_pet.name[45] will be created
+ random_pet.name[46] will be created
+ random_pet.name[47] will be created
+ random_pet.name[48] will be created
+ random_pet.name[49] will be created
+ random_pet.name[50] will be created
+ random_pet.name[51] will be created
+ random_pet.name[52] will be created
+ random_pet.name[53] will be created
+ random_pet.name[54] will be created
+ random_pet.name[55] will be created
+ random_pet.name[56] will be created
+ random_pet.name[57] will be created
+ random_pet.name[58] will be created
+ random_pet.name[59] will be created
+ random_pet.name[60] will be created
+ random_pet.name[61] will be created
+ random_pet.name[62] will be created
+ random_pet.name[63] will be created
+ random_pet.name[64] will be created
+ random_pet.name[65] will be created
+ random_pet.name[66] will be created
+ random_pet.name[67] will be created
+ random_pet.name[68] will be created
+ random_pet.name[69] will be created
+ random_pet.name[70] will be created
+ random_pet.name[71] will be created
+ random_pet.name[72] will be created
+ random_pet.name[73] will be created
+ random_pet.name[74] will be created
+ random_pet.name[75] will be created
+ random_pet.name[76] will be created
+ random_pet.name[77] will be created
+ random_pet.name[78] will be created
+ random_pet.name[79] will be created
+ random_pet.name[80] will be created
+ random_pet.name[81] will be created
+ random_pet.name[82] will be created
+ random_pet.name[83] will be created
+ random_pet.name[84] will be created
+ random_pet.name[85] will be created
+ random_pet.name[86] will be created
+ random_pet.name[87] will be created
+ random_pet.name[88] will be created
+ random_pet.name[89] will be created
+ random_pet.name[90] will be created
+ random_pet.name[91] will be created
+ random_pet.name[92] will be created
+ random_pet.name[93] will be created
+ random_pet.name[94] will be created
+ random_pet.name[95] will be created
+ random_pet.name[96] will be created
+ random_pet.name[97] will be created
+ random_pet.name[98] will be created
+ random_pet.name[99] will be created
+ random_pet.name[100] will be created
+ random_pet.name[101] will be created
+ random_pet.name[102] will be created
+ random_pet.name[103] will be created
+ random_pet.name[104] will be created
+ random_pet.name[105] will be created
+ random_pet.name[106] will be created
+ random_pet.name[107] will be created
+ random_pet.name[108] will be created
+ random_pet.name[109] will be created
+ random_pet.name[110] will be created
+ random_pet.name[111] will be created
+ random_pet.name[112] will be created
+ random_pet.name[113] will be created
+ random_pet.name[114] will be created
+ random_pet.name[115] will be created
+ random_pet.name[116] will be created
+ random_pet.name[117] will be created
+ random_pet.name[118] will be created
+ random_pet.name[119] will be created
+ random_pet.name[120] will be created
+ random_pet.name[121] will be created
+ random_pet.name[122] will be created
+ random_pet.name[123] will be created
+ random_pet.name[124] will be created
+ random_pet.name[125] will be created
+ random_pet.name[126] will be created
+ random_pet.name[127] will be created
+ random_pet.name[128] will be created
+ random_pet.name[129] will be created
+ random_pet.name[130] will be created
+ random_pet.name[131] will be created
+ random_pet.name[132] will be created
+ random_pet.name[133] will be created
+ random_pet.name[134] will be created
+ random_pet.name[135] will be created
+ random_pet.name[136] will be created
+ random_pet.name[137] will be created
+ random_pet.name[138] will be created
+ random_pet.name[139] will be created
+ random_pet.name[140] will be created
+ random_pet.name[141] will be created
+ random_pet.name[142] will be created
+ random_pet.name[143] will be created
+ random_pet.name[144] will be created
+ random_pet.name[145] will be created
+ random_pet.name[146] will be created
+ random_pet.name[147] will be created
+ random_pet.name[148] will be created
+ random_pet.name[149] will be created
+ random_pet.name[150] will be created
+ random_pet.name[151] will be created
+ random_pet.name[152] will be created
+ random_pet.name[153] will be created
+ random_pet.name[154] will be created
+ random_pet.name[155] will be created
+ random_pet.name[156] will be created
+ random_pet.name[157] will be created
+ random_pet.name[158] will be created
+ random_pet.name[159] will be created
+ random_pet.name[160] will be created
+ random_pet.name[161] will be created
+ random_pet.name[162] will be created
+ random_pet.name[163] will be created
+ random_pet.name[164] will be created
+ random_pet.name[165] will be created
+ random_pet.name[166] will be created
+ random_pet.name[167] will be created
+ random_pet.name[168] will be created
+ random_pet.name[169] will be created
+ random_pet.name[170] will be created
+ random_pet.name[171] will be created
+ random_pet.name[172] will be created
+ random_pet.name[173] will be created
+ random_pet.name[174] will be created
+ random_pet.name[175] will be created
+ random_pet.name[176] will be created
+ random_pet.name[177] will be created
+ random_pet.name[178] will be created
+ random_pet.name[179] will be created
+ random_pet.name[180] will be created
+ random_pet.name[181] will be created
+ random_pet.name[182] will be created
+ random_pet.name[183] will be created
+ random_pet.name[184] will be created
+ random_pet.name[185] will be created
+ random_pet.name[186] will be created
+ random_pet.name[187] will be created
+ random_pet.name[188] will be created
+ random_pet.name[189] will be created
+ random_pet.name[190] will be created
+ random_pet.name[191] will be created
+ random_pet.name[192] will be created
+ random_pet.name[193] will be created
+ random_pet.name[194] will be created
+ random_pet.name[195] will be created
+ random_pet.name[196] will be created
+ random_pet.name[197] will be created
+ random_pet.name[198] will be created
+ random_pet.name[199] will be created
+ random_pet.name[200] will be created
+ random_pet.name[201] will be created
+ random_pet.name[202] will be created
+ random_pet.name[203] will be created
+ random_pet.name[204] will be created
+ random_pet.name[205] will be created
+ random_pet.name[206] will be created
+ random_pet.name[207] will be created
+ random_pet.name[208] will be created
+ random_pet.name[209] will be created
+ random_pet.name[210] will be created
+ random_pet.name[211] will be created
+ random_pet.name[212] will be created
+ random_pet.name[213] will be created
+ random_pet.name[214] will be created
+ random_pet.name[215] will be created
+ random_pet.name[216] will be created
+ random_pet.name[217] will be created
+ random_pet.name[218] will be created
+ random_pet.name[219] will be created
+ random_pet.name[220] will be created
+ random_pet.name[221] will be created
+ random_pet.name[222] will be created
+ random_pet.name[223] will be created
+ random_pet.name[224] will be created
+ random_pet.name[225] will be created
+ random_pet.name[226] will be created
+ random_pet.name[227] will be created
+ random_pet.name[228] will be created
+ random_pet.name[229] will be created
+ random_pet.name[230] will be created
+ random_pet.name[231] will be created
+ random_pet.name[232] will be created
+ random_pet.name[233] will be created
+ random_pet.name[234] will be created
+ random_pet.name[235] will be created
+ random_pet.name[236] will be created
+ random_pet.name[237] will be created
+ random_pet.name[238] will be created
+ random_pet.name[239] will be created
+ random_pet.name[240] will be created
+ random_pet.name[241] will be created
+ random_pet.name[242] will be created
+ random_pet.name[243] will be created
+ random_pet.name[244] will be created
+ random_pet.name[245] will be created
+ random_pet.name[246] will be created
+ random_pet.name[247] will be created
+ random_pet.name[248] will be created
+ random_pet.name[249] will be created
+ random_pet.name[250] will be created
+ random_pet.name[251] will be created
+ random_pet.name[252] will be created
+ random_pet.name[253] will be created
+ random_pet.name[254] will be created
+ random_pet.name[255] will be created
+ random_pet.name[256] will be created
+ random_pet.name[257] will be created
+ random_pet.name[258] will be created
+ random_pet.name[259] will be created
+ random_pet.name[260] will be created
+ random_pet.name[261] will be created
+ random_pet.name[262] will be created
+ random_pet.name[263] will be created
+ random_pet.name[264] will be created
+ random_pet.name[265] will be created
+ random_pet.name[266] will be created
+ random_pet.name[267] will be created
+ random_pet.name[268] will be created
+ random_pet.name[269] will be created
+ random_pet.name[270] will be created
+ random_pet.name[271] will be created
+ random_pet.name[272] will be created
+ random_pet.name[273] will be created
+ random_pet.name[274] will be created
+ random_pet.name[275] will be created
+ random_pet.name[276] will be created
+ random_pet.name[277] will be created
+ random_pet.name[278] will be created
+ random_pet.name[279] will be created
+ random_pet.name[280] will be created
+ random_pet.name[281] will be created
+ random_pet.name[282] will be created
+ random_pet.name[283] will be created
+ random_pet.name[284] will be created
+ random_pet.name[285] will be created
+ random_pet.name[286] will be created
+ random_pet.name[287] will be created
+ random_pet.name[288] will be created
+ random_pet.name[289] will be created
+ random_pet.name[290] will be created
+ random_pet.name[291] will be created
+ random_pet.name[292] will be created
+ random_pet.name[293] will be created
+ random_pet.name[294] will be created
+ random_pet.name[295] will be created
+ random_pet.name[296] will be created
+ random_pet.name[297] will be created
+ random_pet.name[298] will be created
+ random_pet.name[299] will be created
+ random_pet.name[300] will be created
+ random_pet.name[301] will be created
+ random_pet.name[302] will be created
+ random_pet.name[303] will be created
+ random_pet.name[304] will be created
+ random_pet.name[305] will be created
+ random_pet.name[306] will be created
+ random_pet.name[307] will be created
+ random_pet.name[308] will be created
+ random_pet.name[309] will be created
+ random_pet.name[310] will be created
+ random_pet.name[311] will be created
+ random_pet.name[312] will be created
+ random_pet.name[313] will be created
+ random_pet.name[314] will be created
+ random_pet.name[315] will be created
+ random_pet.name[316] will be created
+ random_pet.name[317] will be created
+ random_pet.name[318] will be created
+ random_pet.name[319] will be created
+ random_pet.name[320] will be created
+ random_pet.name[321] will be created
+ random_pet.name[322] will be created
+ random_pet.name[323] will be created
+ random_pet.name[324] will be created
+ random_pet.name[325] will be created
+ random_pet.name[326] will be created
+ random_pet.name[327] will be created
+ random_pet.name[328] will be created
+ random_pet.name[329] will be created
+ random_pet.name[330] will be created
+ random_pet.name[331] will be created
+ random_pet.name[332] will be created
+ random_pet.name[333] will be created
+ random_pet.name[334] will be created
+ random_pet.name[335] will be created
+ random_pet.name[336] will be created
+ random_pet.name[337] will be created
+ random_pet.name[338] will be created
+ random_pet.name[339] will be created
+ random_pet.name[340] will be created
+ random_pet.name[341] will be created
+ random_pet.name[342] will be created
+ random_pet.name[343] will be created
+ random_pet.name[344] will be created
+ random_pet.name[345] will be created
+ random_pet.name[346] will be created
+ random_pet.name[347] will be created
+ random_pet.name[348] will be created
+ random_pet.name[349] will be created
+ random_pet.name[350] will be created
+ random_pet.name[351] will be created
+ random_pet.name[352] will be created
+ random_pet.name[353] will be created
+ random_pet.name[354] will be created
+ random_pet.name[355] will be created
+ random_pet.name[356] will be created
+ random_pet.name[357] will be created
+ random_pet.name[358] will be created
+ random_pet.name[359] will be created
+ random_pet.name[360] will be created
+ random_pet.name[361] will be created
+ random_pet.name[362] will be created
+ random_pet.name[363] will be created
+ random_pet.name[364] will be created
+ random_pet.name[365] will be created
+ random_pet.name[366] will be created
+ random_pet.name[367] will be created
+ random_pet.name[368] will be created
+ random_pet.name[369] will be created
+ random_pet.name[370] will be created
+ random_pet.name[371] will be created
+ random_pet.name[372] will be created
+ random_pet.name[373] will be created
+ random_pet.name[374] will be created
+ random_pet.name[375] will be created
+ random_pet.name[376] will be created
+ random_pet.name[377] will be created
+ random_pet.name[378] will be created
+ random_pet.name[379] will be created
+ random_pet.name[380] will be created
+ random_pet.name[381] will be created
+ random_pet.name[382] will be created
+ random_pet.name[383] will be created
+ random_pet.name[384] will be created
+ random_pet.name[385] will be created
+ random_pet.name[386] will be created
+ random_pet.name[387] will be created
+ random_pet.name[388] will be created
+ random_pet.name[389] will be created
+ random_pet.name[390] will be created
+ random_pet.name[391] will be created
+ random_pet.name[392] will be created
+ random_pet.name[393] will be created
+ random_pet.name[394] will be created
+ random_pet.name[395] will be created
+ random_pet.name[396] will be created
+ random_pet.name[397] will be created
+ random_pet.name[398] will be created
+ random_pet.name[399] will be created
+ random_pet.name[400] will be created
+ random_pet.name[401] will be created
+ random_pet.name[402] will be created
+ random_pet.name[403] will be created
+ random_pet.name[404] will be created
+ random_pet.name[405] will be created
+ random_pet.name[406] will be created
+ random_pet.name[407] will be created
+ random_pet.name[408] will be created
+ random_pet.name[409] will be created
+ random_pet.name[410] will be created
+ random_pet.name[411] will be created
+ random_pet.name[412] will be created
+ random_pet.name[413] will be created
+ random_pet.name[414] will be created
+ random_pet.name[415] will be created
+ random_pet.name[416] will be created
+ random_pet.name[417] will be created
+ random_pet.name[418] will be created
+ random_pet.name[419] will be created
+ random_pet.name[420] will be created
+ random_pet.name[421] will be created
+ random_pet.name[422] will be created
+ random_pet.name[423] will be created
+ random_pet.name[424] will be created
+ random_pet.name[425] will be created
+ random_pet.name[426] will be created
+ random_pet.name[427] will be created
+ random_pet.name[428] will be created
+ random_pet.name[429] will be created
+ random_pet.name[430] will be created
+ random_pet.name[431] will be created
+ random_pet.name[432] will be created
+ random_pet.name[433] will be created
+ random_pet.name[434] will be created
+ random_pet.name[435] will be created
+ random_pet.name[436] will be created
+ random_pet.name[437] will be created
+ random_pet.name[438] will be created
+ random_pet.name[439] will be created
+ random_pet.name[440] will be created
+ random_pet.name[441] will be created
+ random_pet.name[442] will be created
+ random_pet.name[443] will be created
+ random_pet.name[444] will be created
+ random_pet.name[445] will be created
+ random_pet.name[446] will be created
+ random_pet.name[447] will be created
+ random_pet.name[448] will be created
+ random_pet.name[449] will be created
+ random_pet.name[450] will be created
+ random_pet.name[451] will be created
+ random_pet.name[452] will be created
+ random_pet.name[453] will be created
+ random_pet.name[454] will be created
+ random_pet.name[455] will be created
+ random_pet.name[456] will be created
+ random_pet.name[457] will be created
+ random_pet.name[458] will be created
+ random_pet.name[459] will be created
+ random_pet.name[460] will be created
+ random_pet.name[461] will be created
+ random_pet.name[462] will be created
+ random_pet.name[463] will be created
+ random_pet.name[464] will be created
+ random_pet.name[465] will be created
+ random_pet.name[466] will be created
+ random_pet.name[467] will be created
+ random_pet.name[468] will be created
+ random_pet.name[469] will be created
+ random_pet.name[470] will be created
+ random_pet.name[471] will be created
+ random_pet.name[472] will be created
+ random_pet.name[473] will be created
+ random_pet.name[474] will be created
+ random_pet.name[475] will be created
+ random_pet.name[476] will be created
+ random_pet.name[477] will be created
+ random_pet.name[478] will be created
+ random_pet.name[479] will be created
+ random_pet.name[480] will be created
+ random_pet.name[481] will be created
+ random_pet.name[482] will be created
+ random_pet.name[483] will be created
+ random_pet.name[484] will be created
+ random_pet.name[485] will be created
+ random_pet.name[486] will be created
+ random_pet.name[487] will be created
+ random_pet.name[488] will be created
+ random_pet.name[489] will be created
+ random_pet.name[490] will be created
+ random_pet.name[491] will be created
+ random_pet.name[492] will be created
+ random_pet.name[493] will be created
+ random_pet.name[494] will be created
+ random_pet.name[495] will be created
+ random_pet.name[496] will be created
+ random_pet.name[497] will be created
+ random_pet.name[498] will be created
+ random_pet.name[499] will be created
+ random_pet.name[500] will be created
+ random_pet.name[501] will be created
+ random_pet.name[502] will be created
+ random_pet.name[503] will be created
+ random_pet.name[504] will be created
+ random_pet.name[505] will be created
+ random_pet.name[506] will be created
+ random_pet.name[507] will be created
+ random_pet.name[508] will be created
+ random_pet.name[509] will be created
+ random_pet.name[510] will be created
+ random_pet.name[511] will be created
+ random_pet.name[512] will be created
+ random_pet.name[513] will be created
+ random_pet.name[514] will be created
+ random_pet.name[515] will be created
+ random_pet.name[516] will be created
+ random_pet.name[517] will be created
+ random_pet.name[518] will be created
+ random_pet.name[519] will be created
+ random_pet.name[520] will be created
+ random_pet.name[521] will be created
+ random_pet.name[522] will be created
+ random_pet.name[523] will be created
+ random_pet.name[524] will be created
+ random_pet.name[525] will be created
+ random_pet.name[526] will be created
+ random_pet.name[527] will be created
+ random_pet.name[528] will be created
+ random_pet.name[529] will be created
+ random_pet.name[530] will be created
+ random_pet.name[531] will be created
+ random_pet.name[532] will be created
+ random_pet.name[533] will be created
+ random_pet.name[534] will be created
+ random_pet.name[535] will be created
+ random_pet.name[536] will be created
+ random_pet.name[537] will be created
+ random_pet.name[538] will be created
+ random_pet.name[539] will be created
+ random_pet.name[540] will be created
+ random_pet.name[541] will be created
+ random_pet.name[542] will be created
+ random_pet.name[543] will be created
+ random_pet.name[544] will be created
+ random_pet.name[545] will be created
+ random_pet.name[546] will be created
+ random_pet.name[547] will be created
+ random_pet.name[548] will be created
+ random_pet.name[549] will be created
+ random_pet.name[550] will be created
+ random_pet.name[551] will be created
+ random_pet.name[552] will be created
+ random_pet.name[553] will be created
+ random_pet.name[554] will be created
+ random_pet.name[555] will be created
+ random_pet.name[556] will be created
+ random_pet.name[557] will be created
+ random_pet.name[558] will be created
+ random_pet.name[559] will be created
+ random_pet.name[560] will be created
+ random_pet.name[561] will be created
+ random_pet.name[562] will be created
+ random_pet.name[563] will be created
+ random_pet.name[564] will be created
+ random_pet.name[565] will be created
+ random_pet.name[566] will be created
+ random_pet.name[567] will be created
+ random_pet.name[568] will be created
+ random_pet.name[569] will be created
+ random_pet.name[570] will be created
+ random_pet.name[571] will be created
+ random_pet.name[572] will be created
+ random_pet.name[573] will be created
+ random_pet.name[574] will be created
+ random_pet.name[575] will be created
+ random_pet.name[576] will be created
+ random_pet.name[577] will be created
+ random_pet.name[578] will be created
+ random_pet.name[579] will be created
+ random_pet.name[580] will be created
+ random_pet.name[581] will be created
+ random_pet.name[582] will be created
+ random_pet.name[583] will be created
+ random_pet.name[584] will be created
+ random_pet.name[585] will be created
+ random_pet.name[586] will be created
+ random_pet.name[587] will be created
+ random_pet.name[588] will be created
+ random_pet.name[589] will be created
+ random_pet.name[590] will be created
+ random_pet.name[591] will be created
+ random_pet.name[592] will be created
+ random_pet.name[593] will be created
+ random_pet.name[594] will be created
+ random_pet.name[595] will be created
+ random_pet.name[596] will be created
+ random_pet.name[597] will be created
+ random_pet.name[598] will be created
+ random_pet.name[599] will be created
+ random_pet.name[600] will be created
+ random_pet.name[601] will be created
+ random_pet.name[602] will be created
+ random_pet.name[603] will be created
+ random_pet.name[604] will be created
+ random_pet.name[605] will be created
+ random_pet.name[606] will be created
+ random_pet.name[607] will be created
+ random_pet.name[608] will be created
+ random_pet.name[609] will be created
+ random_pet.name[610] will be created
+ random_pet.name[611] will be created
+ random_pet.name[612] will be created
+ random_pet.name[613] will be created
+ random_pet.name[614] will be created
+ random_pet.name[615] will be created
+ random_pet.name[616] will be created
+ random_pet.name[617] will be created
+ random
Apply complete! Resources: 10000 added, 0 changed, 0 destroyed.
By rdhar at 2025-08-03T12:43:59Z (view log).
random_pet.name[6052]: Creating...
random_pet.name[2761]: Creating...
random_pet.name[8641]: Creating...
random_pet.name[5619]: Creating...
random_pet.name[4461]: Creating...
random_pet.name[302]: Creating...
random_pet.name[5348]: Creating...
random_pet.name[141]: Creating...
random_pet.name[9137]: Creating...
random_pet.name[2081]: Creating...
random_pet.name[6052]: Creation complete after 0s [id=popular-deer]
random_pet.name[2081]: Creation complete after 0s [id=busy-wildcat]
random_pet.name[2761]: Creation complete after 0s [id=decent-kiwi]
random_pet.name[4461]: Creation complete after 0s [id=exciting-spaniel]
random_pet.name[9137]: Creation complete after 0s [id=alive-narwhal]
random_pet.name[5348]: Creation complete after 0s [id=choice-cod]
random_pet.name[302]: Creation complete after 0s [id=powerful-bream]
random_pet.name[141]: Creation complete after 0s [id=fair-ghost]
random_pet.name[8641]: Creation complete after 0s [id=suitable-shrew]
random_pet.name[5619]: Creation complete after 0s [id=simple-civet]
random_pet.name[5183]: Creating...
random_pet.name[1622]: Creating...
random_pet.name[5183]: Creation complete after 0s [id=worthy-gelding]
random_pet.name[9616]: Creating...
random_pet.name[7553]: Creating...
random_pet.name[3219]: Creating...
random_pet.name[1622]: Creation complete after 0s [id=dashing-turtle]
random_pet.name[7140]: Creating...
random_pet.name[3112]: Creating...
random_pet.name[7553]: Creation complete after 0s [id=elegant-urchin]
random_pet.name[9616]: Creation complete after 0s [id=sure-platypus]
random_pet.name[8196]: Creating...
random_pet.name[6505]: Creating...
random_pet.name[8160]: Creating...
random_pet.name[3112]: Creation complete after 0s [id=enabled-serval]
random_pet.name[3219]: Creation complete after 0s [id=moved-panda]
random_pet.name[7140]: Creation complete after 0s [id=witty-foal]
random_pet.name[8196]: Creation complete after 0s [id=next-drake]
random_pet.name[6505]: Creation complete after 0s [id=guided-rabbit]
random_pet.name[8160]: Creation complete after 0s [id=outgoing-bee]
random_pet.name[1563]: Creating...
random_pet.name[3133]: Creating...
random_pet.name[8901]: Creating...
random_pet.name[8634]: Creating...
random_pet.name[3133]: Creation complete after 0s [id=sterling-snipe]
random_pet.name[1563]: Creation complete after 0s [id=full-satyr]
random_pet.name[1370]: Creating...
random_pet.name[695]: Creating...
random_pet.name[9276]: Creating...
random_pet.name[9085]: Creating...
random_pet.name[695]: Creation complete after 0s [id=promoted-ladybird]
random_pet.name[2539]: Creating...
random_pet.name[7172]: Creating...
random_pet.name[9085]: Creation complete after 0s [id=excited-teal]
random_pet.name[8634]: Creation complete after 0s [id=precise-kangaroo]
random_pet.name[8901]: Creation complete after 0s [id=intent-orca]
random_pet.name[1370]: Creation complete after 0s [id=subtle-skunk]
random_pet.name[9276]: Creation complete after 0s [id=sensible-gannet]
random_pet.name[7240]: Creating...
random_pet.name[7311]: Creating...
random_pet.name[2539]: Creation complete after 0s [id=faithful-insect]
random_pet.name[7172]: Creation complete after 0s [id=alive-ghoul]
random_pet.name[5663]: Creating...
random_pet.name[1369]: Creating...
random_pet.name[7240]: Creation complete after 0s [id=crucial-toucan]
random_pet.name[9357]: Creating...
random_pet.name[9758]: Creating...
random_pet.name[7311]: Creation complete after 0s [id=sharp-chimp]
random_pet.name[4122]: Creating...
random_pet.name[2283]: Creating...
random_pet.name[1369]: Creation complete after 0s [id=grown-anchovy]
random_pet.name[1087]: Creating...
random_pet.name[3972]: Creating...
random_pet.name[9357]: Creation complete after 0s [id=divine-hornet]
random_pet.name[5663]: Creation complete after 0s [id=joint-mallard]
random_pet.name[1087]: Creation complete after 0s [id=next-rodent]
random_pet.name[2372]: Creating...
random_pet.name[3972]: Creation complete after 0s [id=enjoyed-gibbon]
random_pet.name[2283]: Creation complete after 0s [id=living-swift]
random_pet.name[4122]: Creation complete after 0s [id=trusted-chamois]
random_pet.name[9758]: Creation complete after 0s [id=grand-giraffe]
random_pet.name[1042]: Creating...
random_pet.name[1058]: Creating...
random_pet.name[4140]: Creating...
random_pet.name[1042]: Creation complete after 0s [id=known-jawfish]
random_pet.name[4881]: Creating...
random_pet.name[2210]: Creating...
random_pet.name[2752]: Creating...
random_pet.name[2372]: Creation complete after 0s [id=possible-ghoul]
random_pet.name[3470]: Creating...
random_pet.name[2235]: Creating...
random_pet.name[7448]: Creating...
random_pet.name[1058]: Creation complete after 0s [id=wanted-hound]
random_pet.name[2210]: Creation complete after 0s [id=bold-airedale]
random_pet.name[4881]: Creation complete after 0s [id=welcome-eft]
random_pet.name[4140]: Creation complete after 0s [id=welcomed-pup]
random_pet.name[2752]: Creation complete after 0s [id=whole-malamute]
random_pet.name[1289]: Creating...
random_pet.name[3470]: Creation complete after 0s [id=funky-hermit]
random_pet.name[7448]: Creation complete after 0s [id=immense-finch]
random_pet.name[2235]: Creation complete after 0s [id=liberal-dove]
random_pet.name[1276]: Creating...
random_pet.name[1289]: Creation complete after 0s [id=intent-leech]
random_pet.name[7449]: Creating...
random_pet.name[3366]: Creating...
random_pet.name[6331]: Creating...
random_pet.name[1276]: Creation complete after 0s [id=flexible-raven]
random_pet.name[4005]: Creating...
random_pet.name[476]: Creating...
random_pet.name[778]: Creating...
random_pet.name[7449]: Creation complete after 0s [id=sharp-jackal]
random_pet.name[7495]: Creating...
random_pet.name[6331]: Creation complete after 0s [id=innocent-lobster]
random_pet.name[476]: Creation complete after 0s [id=hopeful-duckling]
random_pet.name[4005]: Creation complete after 0s [id=relieved-bluejay]
random_pet.name[1128]: Creating...
random_pet.name[778]: Creation complete after 0s [id=tender-boa]
random_pet.name[7495]: Creation complete after 0s [id=frank-toad]
random_pet.name[9339]: Creating...
random_pet.name[3366]: Creation complete after 0s [id=advanced-dingo]
random_pet.name[1128]: Creation complete after 0s [id=gorgeous-squid]
random_pet.name[3120]: Creating...
random_pet.name[137]: Creating...
random_pet.name[9339]: Creation complete after 0s [id=brief-imp]
random_pet.name[9204]: Creating...
random_pet.name[3120]: Creation complete after 0s [id=adapting-cardinal]
random_pet.name[6856]: Creating...
random_pet.name[8400]: Creating...
random_pet.name[6991]: Creating...
random_pet.name[137]: Creation complete after 0s [id=saving-cardinal]
random_pet.name[9204]: Creation complete after 0s [id=bright-raccoon]
random_pet.name[3846]: Creating...
random_pet.name[9627]: Creating...
random_pet.name[1536]: Creating...
random_pet.name[2593]: Creating...
random_pet.name[6686]: Creating...
random_pet.name[8400]: Creation complete after 0s [id=honest-humpback]
random_pet.name[6991]: Creation complete after 0s [id=awake-jaguar]
random_pet.name[6856]: Creation complete after 0s [id=loved-mantis]
random_pet.name[3846]: Creation complete after 0s [id=growing-dolphin]
random_pet.name[1536]: Creation complete after 0s [id=maximum-basilisk]
random_pet.name[6686]: Creation complete after 0s [id=pro-kitten]
random_pet.name[2593]: Creation complete after 0s [id=trusting-jaguar]
random_pet.name[9627]: Creation complete after 0s [id=frank-dassie]
random_pet.name[5881]: Creating...
random_pet.name[8033]: Creating...
random_pet.name[4161]: Creating...
random_pet.name[4490]: Creating...
random_pet.name[6938]: Creating...
random_pet.name[3748]: Creating...
random_pet.name[5881]: Creation complete after 0s [id=suitable-dory]
random_pet.name[6298]: Creating...
random_pet.name[3748]: Creation complete after 0s [id=model-calf]
random_pet.name[4161]: Creation complete after 0s [id=strong-herring]
random_pet.name[6938]: Creation complete after 0s [id=desired-hen]
random_pet.name[8033]: Creation complete after 0s [id=infinite-shrimp]
random_pet.name[2202]: Creating...
random_pet.name[3466]: Creating...
random_pet.name[6521]: Creating...
random_pet.name[4645]: Creating...
random_pet.name[4490]: Creation complete after 0s [id=casual-mongrel]
random_pet.name[6298]: Creation complete after 0s [id=fair-woodcock]
random_pet.name[3466]: Creation complete after 0s [id=accepted-sheep]
random_pet.name[2202]: Creation complete after 0s [id=new-ladybug]
random_pet.name[3141]: Creating...
random_pet.name[9075]: Creating...
random_pet.name[1158]: Creating...
random_pet.name[6521]: Creation complete after 0s [id=suited-skink]
random_pet.name[1978]: Creating...
random_pet.name[4645]: Creation complete after 0s [id=legal-toad]
random_pet.name[5497]: Creating...
random_pet.name[5415]: Creating...
random_pet.name[1978]: Creation complete after 0s [id=native-javelin]
random_pet.name[3141]: Creation complete after 0s [id=wise-condor]
random_pet.name[1158]: Creation complete after 0s [id=social-shad]
random_pet.name[186]: Creating...
random_pet.name[9075]: Creation complete after 0s [id=cheerful-loon]
random_pet.name[5415]: Creation complete after 0s [id=just-python]
random_pet.name[6446]: Creating...
random_pet.name[5497]: Creation complete after 0s [id=content-eagle]
random_pet.name[186]: Creation complete after 0s [id=ruling-blowfish]
random_pet.name[6446]: Creation complete after 0s [id=sharp-emu]
random_pet.name[7132]: Creating...
random_pet.name[3382]: Creating...
random_pet.name[5166]: Creating...
random_pet.name[4647]: Creating...
random_pet.name[6103]: Creating...
random_pet.name[293]: Creating...
random_pet.name[4762]: Creating...
random_pet.name[5166]: Creation complete after 0s [id=willing-louse]
random_pet.name[3382]: Creation complete after 0s [id=mighty-boar]
random_pet.name[4647]: Creation complete after 0s [id=vast-bobcat]
random_pet.name[4518]: Creating...
random_pet.name[4762]: Creation complete after 0s [id=true-mudfish]
random_pet.name[7132]: Creation complete after 0s [id=special-mustang]
random_pet.name[6103]: Creation complete after 0s [id=becoming-dodo]
random_pet.name[4607]: Creating...
random_pet.name[2221]: Creating...
random_pet.name[293]: Creation complete after 0s [id=driven-bream]
random_pet.name[650]: Creating...
random_pet.name[5588]: Creating...
random_pet.name[4518]: Creation complete after 0s [id=current-jackal]
random_pet.name[4607]: Creation complete after 0s [id=accurate-crayfish]
random_pet.name[2221]: Creation complete after 0s [id=becoming-giraffe]
random_pet.name[2914]: Creating...
random_pet.name[6282]: Creating...
random_pet.name[5734]: Creating...
random_pet.name[650]: Creation complete after 0s [id=faithful-kitten]
random_pet.name[5588]: Creation complete after 0s [id=polished-cattle]
random_pet.name[728]: Creating...
random_pet.name[488]: Creating...
random_pet.name[728]: Creation complete after 0s [id=infinite-gelding]
random_pet.name[5734]: Creation complete after 0s [id=emerging-sunbeam]
random_pet.name[2914]: Creation complete after 0s [id=darling-bengal]
random_pet.name[2135]: Creating...
random_pet.name[7913]: Creating...
random_pet.name[6282]: Creation complete after 0s [id=powerful-viper]
random_pet.name[7347]: Creating...
random_pet.name[488]: Creation complete after 0s [id=trusty-thrush]
random_pet.name[3499]: Creating...
random_pet.name[2529]: Creating...
random_pet.name[7347]: Creation complete after 0s [id=infinite-mole]
random_pet.name[2135]: Creation complete after 0s [id=intent-sailfish]
random_pet.name[7913]: Creation complete after 0s [id=gorgeous-tadpole]
random_pet.name[2529]: Creation complete after 0s [id=grateful-reindeer]
random_pet.name[4074]: Creating...
random_pet.name[5338]: Creating...
random_pet.name[3499]: Creation complete after 0s [id=saved-woodcock]
random_pet.name[4312]: Creating...
random_pet.name[2228]: Creating...
random_pet.name[3551]: Creating...
random_pet.name[964]: Creating...
random_pet.name[4312]: Creation complete after 0s [id=pumped-hyena]
random_pet.name[4074]: Creation complete after 0s [id=balanced-haddock]
random_pet.name[5338]: Creation complete after 0s [id=charmed-boxer]
random_pet.name[4222]: Creating...
random_pet.name[3497]: Creating...
random_pet.name[3551]: Creation complete after 0s [id=light-blowfish]
random_pet.name[964]: Creation complete after 0s [id=divine-dingo]
random_pet.name[2228]: Creation complete after 0s [id=uncommon-feline]
random_pet.name[5913]: Creating...
random_pet.name[3497]: Creation complete after 0s [id=whole-titmouse]
random_pet.name[682]: Creating...
random_pet.name[6541]: Creating...
random_pet.name[4222]: Creation complete after 0s [id=clean-pup]
random_pet.name[2886]: Creating...
random_pet.name[318]: Creating...
random_pet.name[5913]: Creation complete after 0s [id=obliging-rattler]
random_pet.name[682]: Creation complete after 0s [id=skilled-lynx]
random_pet.name[318]: Creation complete after 0s [id=patient-goat]
random_pet.name[7194]: Creating...
random_pet.name[8239]: Creating...
random_pet.name[2886]: Creation complete after 0s [id=massive-sunbird]
random_pet.name[3838]: Creating...
random_pet.name[6788]: Creating...
random_pet.name[8239]: Creation complete after 0s [id=holy-possum]
random_pet.name[6541]: Creation complete after 0s [id=striking-baboon]
random_pet.name[3838]: Creation complete after 0s [id=driving-wombat]
random_pet.name[5836]: Creating...
random_pet.name[6788]: Creation complete after 0s [id=proper-krill]
random_pet.name[7194]: Creation complete after 0s [id=hip-anchovy]
random_pet.name[2512]: Creating...
random_pet.name[2512]: Creation complete after 0s [id=keen-quail]
random_pet.name[2965]: Creating...
random_pet.name[5836]: Creation complete after 0s [id=neat-lamprey]
random_pet.name[5043]: Creating...
random_pet.name[7876]: Creating...
random_pet.name[159]: Creating...
random_pet.name[9560]: Creating...
random_pet.name[7876]: Creation complete after 0s [id=smart-panda]
random_pet.name[5124]: Creating...
random_pet.name[159]: Creation complete after 0s [id=organic-malamute]
random_pet.name[2965]: Creation complete after 0s [id=modest-primate]
random_pet.name[369]: Creating...
random_pet.name[9560]: Creation complete after 0s [id=deep-anemone]
random_pet.name[5124]: Creation complete after 0s [id=caring-lioness]
random_pet.name[7800]: Creating...
random_pet.name[5571]: Creating...
random_pet.name[369]: Creation complete after 0s [id=darling-snake]
random_pet.name[5571]: Creation complete after 0s [id=top-buffalo]
random_pet.name[5043]: Creation complete after 0s [id=tolerant-macaque]
random_pet.name[7506]: Creating...
random_pet.name[4216]: Creating...
random_pet.name[7800]: Creation complete after 0s [id=exciting-chamois]
random_pet.name[877]: Creating...
random_pet.name[6960]: Creating...
random_pet.name[4501]: Creating...
random_pet.name[7506]: Creation complete after 0s [id=finer-llama]
random_pet.name[4216]: Creation complete after 0s [id=communal-koala]
random_pet.name[589]: Creating...
random_pet.name[8180]: Creating...
random_pet.name[877]: Creation complete after 0s [id=careful-asp]
random_pet.name[5024]: Creating...
random_pet.name[9487]: Creating...
random_pet.name[4501]: Creation complete after 0s [id=magical-treefrog]
random_pet.name[6960]: Creation complete after 0s [id=strong-grubworm]
random_pet.name[6848]: Creating...
random_pet.name[5024]: Creation complete after 0s [id=expert-badger]
random_pet.name[2403]: Creating...
random_pet.name[1415]: Creating...
random_pet.name[9487]: Creation complete after 0s [id=mature-joey]
random_pet.name[589]: Creation complete after 0s [id=deciding-emu]
random_pet.name[8180]: Creation complete after 0s [id=fitting-jay]
random_pet.name[2403]: Creation complete after 0s [id=game-maggot]
random_pet.name[7930]: Creating...
random_pet.name[1415]: Creation complete after 0s [id=shining-trout]
random_pet.name[6338]: Creating...
random_pet.name[5785]: Creating...
random_pet.name[6848]: Creation complete after 0s [id=fresh-crow]
random_pet.name[7930]: Creation complete after 0s [id=quick-crappie]
random_pet.name[1352]: Creating...
random_pet.name[6338]: Creation complete after 0s [id=set-roughy]
random_pet.name[8822]: Creating...
random_pet.name[7542]: Creating...
random_pet.name[1352]: Creation complete after 0s [id=unbiased-skink]
random_pet.name[5906]: Creating...
random_pet.name[7542]: Creation complete after 0s [id=in-caribou]
random_pet.name[4544]: Creating...
random_pet.name[8822]: Creation complete after 0s [id=relaxed-marlin]
random_pet.name[5785]: Creation complete after 0s [id=right-locust]
random_pet.name[4544]: Creation complete after 0s [id=certain-hermit]
random_pet.name[2860]: Creating...
random_pet.name[5339]: Creating...
random_pet.name[4247]: Creating...
random_pet.name[1621]: Creating...
random_pet.name[8671]: Creating...
random_pet.name[5339]: Creation complete after 0s [id=humorous-boa]
random_pet.name[5906]: Creation complete after 0s [id=premium-fly]
random_pet.name[5277]: Creating...
random_pet.name[2860]: Creation complete after 0s [id=capable-marten]
random_pet.name[4247]: Creation complete after 0s [id=beloved-worm]
random_pet.name[7295]: Creating...
random_pet.name[4291]: Creating...
random_pet.name[1702]: Creating...
random_pet.name[1621]: Creation complete after 0s [id=flowing-earwig]
random_pet.name[7295]: Creation complete after 0s [id=evolved-airedale]
random_pet.name[5277]: Creation complete after 0s [id=accepted-wahoo]
random_pet.name[3691]: Creating...
random_pet.name[1702]: Creation complete after 0s [id=usable-halibut]
random_pet.name[4291]: Creation complete after 0s [id=absolute-redbird]
random_pet.name[7014]: Creating...
random_pet.name[7912]: Creating...
random_pet.name[6984]: Creating...
random_pet.name[3691]: Creation complete after 0s [id=dominant-hawk]
random_pet.name[8671]: Creation complete after 0s [id=workable-griffon]
random_pet.name[6984]: Creation complete after 0s [id=grown-bobcat]
random_pet.name[5498]: Creating...
random_pet.name[5498]: Creation complete after 0s [id=great-halibut]
random_pet.name[3258]: Creating...
random_pet.name[7912]: Creation complete after 0s [id=generous-camel]
random_pet.name[7014]: Creation complete after 0s [id=sweeping-condor]
random_pet.name[1971]: Creating...
random_pet.name[2243]: Creating...
random_pet.name[1297]: Creating...
random_pet.name[871]: Creating...
random_pet.name[3258]: Creation complete after 0s [id=humorous-ghost]
random_pet.name[1971]: Creation complete after 0s [id=valued-swan]
random_pet.name[7013]: Creating...
random_pet.name[5765]: Creating...
random_pet.name[1204]: Creating...
random_pet.name[871]: Creation complete after 0s [id=witty-pipefish]
random_pet.name[1297]: Creation complete after 0s [id=destined-dove]
random_pet.name[2243]: Creation complete after 0s [id=still-mudfish]
random_pet.name[7013]: Creation complete after 0s [id=nearby-hare]
random_pet.name[9338]: Creating...
random_pet.name[5182]: Creating...
random_pet.name[5765]: Creation complete after 0s [id=precise-burro]
random_pet.name[1204]: Creation complete after 0s [id=natural-sunbeam]
random_pet.name[4703]: Creating...
random_pet.name[4703]: Creation complete after 0s [id=prime-bulldog]
random_pet.name[982]: Creating...
random_pet.name[4439]: Creating...
random_pet.name[9338]: Creation complete after 0s [id=assured-parakeet]
random_pet.name[5182]: Creation complete after 0s [id=alive-mullet]
random_pet.name[676]: Creating...
random_pet.name[4439]: Creation complete after 0s [id=amusing-ant]
random_pet.name[4416]: Creating...
random_pet.name[4416]: Creation complete after 0s [id=touched-lemming]
random_pet.name[7894]: Creating...
random_pet.name[7102]: Creating...
random_pet.name[982]: Creation complete after 0s [id=giving-swan]
random_pet.name[676]: Creation complete after 0s [id=internal-tetra]
random_pet.name[7690]: Creating...
random_pet.name[7102]: Creation complete after 0s [id=one-imp]
random_pet.name[6187]: Creating...
random_pet.name[3777]: Creating...
random_pet.name[9793]: Creating...
random_pet.name[7894]: Creation complete after 0s [id=needed-eel]
random_pet.name[1285]: Creating...
random_pet.name[5933]: Creating...
random_pet.name[6187]: Creation complete after 0s [id=massive-glowworm]
random_pet.name[3777]: Creation complete after 0s [id=golden-cardinal]
random_pet.name[9793]: Creation complete after 0s [id=upright-mullet]
random_pet.name[5933]: Creation complete after 0s [id=guiding-lobster]
random_pet.name[2647]: Creating...
random_pet.name[7123]: Creating...
random_pet.name[1285]: Creation complete after 0s [id=noted-sunfish]
random_pet.name[2566]: Creating...
random_pet.name[1238]: Creating...
random_pet.name[2647]: Creation complete after 0s [id=firm-stud]
random_pet.name[1238]: Creation complete after 0s [id=proven-gnat]
random_pet.name[7690]: Creation complete after 0s [id=polite-whale]
random_pet.name[9842]: Creating...
random_pet.name[2566]: Creation complete after 0s [id=exotic-parrot]
random_pet.name[7123]: Creation complete after 0s [id=still-yeti]
random_pet.name[1118]: Creating...
random_pet.name[729]: Creating...
random_pet.name[438]: Creating...
random_pet.name[9842]: Creation complete after 0s [id=gentle-turkey]
random_pet.name[6372]: Creating...
random_pet.name[5462]: Creating...
random_pet.name[3533]: Creating...
random_pet.name[1118]: Creation complete after 0s [id=select-pelican]
random_pet.name[7990]: Creating...
random_pet.name[6372]: Creation complete after 0s [id=top-bream]
random_pet.name[438]: Creation complete after 0s [id=rare-ram]
random_pet.name[2400]: Creating...
random_pet.name[729]: Creation complete after 0s [id=regular-fawn]
random_pet.name[5028]: Creating...
random_pet.name[3533]: Creation complete after 0s [id=tops-akita]
random_pet.name[2400]: Creation complete after 0s [id=suited-chow]
random_pet.name[7990]: Creation complete after 0s [id=select-flea]
random_pet.name[5462]: Creation complete after 0s [id=tender-bunny]
random_pet.name[5028]: Creation complete after 0s [id=relevant-liger]
random_pet.name[4066]: Creating...
random_pet.name[3974]: Creating...
random_pet.name[9236]: Creating...
random_pet.name[7293]: Creating...
random_pet.name[4066]: Creation complete after 0s [id=relieved-boa]
random_pet.name[7293]: Creation complete after 0s [id=guiding-chow]
random_pet.name[3974]: Creation complete after 0s [id=stunning-sheepdog]
random_pet.name[9236]: Creation complete after 0s [id=obliging-mutt]
random_pet.name[3845]: Creating...
random_pet.name[2419]: Creating...
random_pet.name[2849]: Creating...
random_pet.name[5401]: Creating...
random_pet.name[1298]: Creating...
random_pet.name[5507]: Creating...
random_pet.name[3845]: Creation complete after 0s [id=harmless-honeybee]
random_pet.name[2419]: Creation complete after 0s [id=enabled-rattler]
random_pet.name[5401]: Creation complete after 0s [id=sunny-bear]
random_pet.name[1456]: Creating...
random_pet.name[2849]: Creation complete after 0s [id=lenient-wasp]
random_pet.name[7784]: Creating...
random_pet.name[6387]: Creating...
random_pet.name[5507]: Creation complete after 0s [id=just-wombat]
random_pet.name[4657]: Creating...
random_pet.name[7784]: Creation complete after 0s [id=present-iguana]
random_pet.name[1298]: Creation complete after 0s [id=settling-hornet]
random_pet.name[1498]: Creating...
random_pet.name[4657]: Creation complete after 0s [id=fitting-ibex]
random_pet.name[1456]: Creation complete after 0s [id=capable-fawn]
random_pet.name[6387]: Creation complete after 0s [id=normal-mink]
random_pet.name[7743]: Creating...
random_pet.name[2847]: Creating...
random_pet.name[8874]: Creating...
random_pet.name[7743]: Creation complete after 0s [id=massive-python]
random_pet.name[7088]: Creating...
random_pet.name[1498]: Creation complete after 0s [id=popular-orca]
random_pet.name[7088]: Creation complete after 0s [id=arriving-barnacle]
random_pet.name[2216]: Creating...
random_pet.name[8874]: Creation complete after 0s [id=dynamic-gorilla]
random_pet.name[2366]: Creating...
random_pet.name[1019]: Creating...
random_pet.name[2847]: Creation complete after 0s [id=funny-labrador]
random_pet.name[8486]: Creating...
random_pet.name[2724]: Creating...
random_pet.name[1019]: Creation complete after 0s [id=flying-duck]
random_pet.name[2366]: Creation complete after 0s [id=charmed-hornet]
random_pet.name[2216]: Creation complete after 0s [id=solid-sheepdog]
random_pet.name[197]: Creating...
random_pet.name[6417]: Creating...
random_pet.name[6817]: Creating...
random_pet.name[2724]: Creation complete after 0s [id=sacred-ladybug]
random_pet.name[7881]: Creating...
random_pet.name[3512]: Creating...
random_pet.name[6434]: Creating...
random_pet.name[8486]: Creation complete after 0s [id=infinite-midge]
random_pet.name[6417]: Creation complete after 0s [id=wealthy-orca]
random_pet.name[197]: Creation complete after 0s [id=destined-gnu]
random_pet.name[5719]: Creating...
random_pet.name[6434]: Creation complete after 0s [id=kind-mullet]
random_pet.name[3512]: Creation complete after 0s [id=wondrous-stingray]
random_pet.name[6817]: Creation complete after 0s [id=rested-ox]
random_pet.name[5654]: Creating...
random_pet.name[1653]: Creating...
random_pet.name[5719]: Creation complete after 0s [id=positive-bull]
random_pet.name[7881]: Creation complete after 0s [id=moving-sunbeam]
random_pet.name[5783]: Creating...
random_pet.name[9480]: Creating...
random_pet.name[8568]: Creating...
random_pet.name[1661]: Creating...
random_pet.name[5783]: Creation complete after 0s [id=logical-monster]
random_pet.name[5654]: Creation complete after 0s [id=leading-goshawk]
random_pet.name[4724]: Creating...
random_pet.name[9480]: Creation complete after 0s [id=able-mammal]
random_pet.name[1653]: Creation complete after 0s [id=capital-chimp]
random_pet.name[2749]: Creating...
random_pet.name[4724]: Creation complete after 0s [id=heroic-gazelle]
random_pet.name[1195]: Creating...
random_pet.name[8568]: Creation complete after 0s [id=crack-wolf]
random_pet.name[3197]: Creating...
random_pet.name[2749]: Creation complete after 0s [id=advanced-trout]
random_pet.name[9976]: Creating...
random_pet.name[1661]: Creation complete after 0s [id=advanced-guinea]
random_pet.name[1195]: Creation complete after 0s [id=improved-mollusk]
random_pet.name[6234]: Creating...
random_pet.name[2571]: Creating...
random_pet.name[3197]: Creation complete after 0s [id=quick-tick]
random_pet.name[3986]: Creating...
random_pet.name[9976]: Creation complete after 0s [id=popular-mako]
random_pet.name[2157]: Creating...
random_pet.name[6234]: Creation complete after 0s [id=eager-glowworm]
random_pet.name[2571]: Creation complete after 0s [id=smashing-crane]
random_pet.name[3576]: Creating...
random_pet.name[9366]: Creating...
random_pet.name[3986]: Creation complete after 0s [id=thorough-elf]
random_pet.name[5192]: Creating...
random_pet.name[2157]: Creation complete after 0s [id=grand-muskrat]
random_pet.name[1172]: Creating...
random_pet.name[9366]: Creation complete after 0s [id=exotic-gibbon]
random_pet.name[1066]: Creating...
random_pet.name[4500]: Creating...
random_pet.name[5192]: Creation complete after 0s [id=optimum-tapir]
random_pet.name[3576]: Creation complete after 0s [id=smart-newt]
random_pet.name[4256]: Creating...
random_pet.name[1172]: Creation complete after 0s [id=innocent-aphid]
random_pet.name[1066]: Creation complete after 0s [id=rational-barnacle]
random_pet.name[6057]: Creating...
random_pet.name[4256]: Creation complete after 0s [id=chief-marlin]
random_pet.name[4500]: Creation complete after 0s [id=able-fowl]
random_pet.name[9662]: Creating...
random_pet.name[6057]: Creation complete after 0s [id=proper-starling]
random_pet.name[5953]: Creating...
random_pet.name[8577]: Creating...
random_pet.name[6823]: Creating...
random_pet.name[9128]: Creating...
random_pet.name[4245]: Creating...
random_pet.name[5953]: Creation complete after 0s [id=immortal-oryx]
random_pet.name[9662]: Creation complete after 0s [id=blessed-glowworm]
random_pet.name[4245]: Creation complete after 0s [id=darling-owl]
random_pet.name[7118]: Creating...
random_pet.name[9128]: Creation complete after 0s [id=electric-polliwog]
random_pet.name[2023]: Creating...
random_pet.name[7118]: Creation complete after 0s [id=clear-aphid]
random_pet.name[126]: Creating...
random_pet.name[3820]: Creating...
random_pet.name[8577]: Creation complete after 0s [id=pure-chigger]
random_pet.name[6823]: Creation complete after 0s [id=smooth-crayfish]
random_pet.name[126]: Creation complete after 0s [id=useful-crappie]
random_pet.name[362]: Creating...
random_pet.name[5598]: Creating...
random_pet.name[3820]: Creation complete after 0s [id=funny-leech]
random_pet.name[6056]: Creating...
random_pet.name[2023]: Creation complete after 0s [id=promoted-marlin]
random_pet.name[6900]: Creating...
random_pet.name[362]: Creation complete after 0s [id=musical-hookworm]
random_pet.name[4436]: Creating...
random_pet.name[5598]: Creation complete after 0s [id=up-racer]
random_pet.name[6342]: Creating...
random_pet.name[6056]: Creation complete after 0s [id=possible-seagull]
random_pet.name[4436]: Creation complete after 0s [id=quiet-condor]
random_pet.name[6900]: Creation complete after 0s [id=stirred-bull]
random_pet.name[6342]: Creation complete after 0s [id=apt-lamprey]
random_pet.name[3869]: Creating...
random_pet.name[8439]: Creating...
random_pet.name[1143]: Creating...
random_pet.name[9518]: Creating...
random_pet.name[310]: Creating...
random_pet.name[7560]: Creating...
random_pet.name[3869]: Creation complete after 0s [id=sharp-sloth]
random_pet.name[1148]: Creating...
random_pet.name[1143]: Creation complete after 0s [id=pet-chimp]
random_pet.name[8439]: Creation complete after 0s [id=cheerful-ape]
random_pet.name[1148]: Creation complete after 0s [id=immortal-tadpole]
random_pet.name[310]: Creation complete after 0s [id=cool-louse]
random_pet.name[7560]: Creation complete after 0s [id=intense-owl]
random_pet.name[7595]: Creating...
random_pet.name[3317]: Creating...
random_pet.name[7773]: Creating...
random_pet.name[9518]: Creation complete after 0s [id=rapid-hornet]
random_pet.name[1831]: Creating...
random_pet.name[6558]: Creating...
random_pet.name[1748]: Creating...
random_pet.name[7595]: Creation complete after 0s [id=normal-chigger]
random_pet.name[3317]: Creation complete after 0s [id=feasible-lamprey]
random_pet.name[5465]: Creating...
random_pet.name[7773]: Creation complete after 0s [id=master-werewolf]
random_pet.name[6269]: Creating...
random_pet.name[1831]: Creation complete after 0s [id=current-elk]
random_pet.name[1748]: Creation complete after 0s [id=epic-pelican]
random_pet.name[6558]: Creation complete after 0s [id=dynamic-ladybird]
random_pet.name[6269]: Creation complete after 0s [id=classic-snapper]
random_pet.name[7277]: Creating...
random_pet.name[2727]: Creating...
random_pet.name[5465]: Creation complete after 0s [id=fit-gar]
random_pet.name[2727]: Creation complete after 0s [id=mighty-snapper]
random_pet.name[3051]: Creating...
random_pet.name[7266]: Creating...
random_pet.name[3051]: Creation complete after 0s [id=direct-magpie]
random_pet.name[214]: Creating...
random_pet.name[7266]: Creation complete after 0s [id=learning-mudfish]
random_pet.name[9872]: Creating...
random_pet.name[6133]: Creating...
random_pet.name[7277]: Creation complete after 0s [id=stirred-shepherd]
random_pet.name[4455]: Creating...
random_pet.name[3111]: Creating...
random_pet.name[8345]: Creating...
random_pet.name[9040]: Creating...
random_pet.name[6133]: Creation complete after 0s [id=superb-fawn]
random_pet.name[3399]: Creating...
random_pet.name[214]: Creation complete after 0s [id=safe-silkworm]
random_pet.name[9040]: Creation complete after 0s [id=bright-gobbler]
random_pet.name[5819]: Creating...
random_pet.name[9872]: Creation complete after 0s [id=prime-snapper]
random_pet.name[3111]: Creation complete after 0s [id=beloved-grouse]
random_pet.name[4455]: Creation complete after 0s [id=glorious-koi]
random_pet.name[3399]: Creation complete after 0s [id=tolerant-phoenix]
random_pet.name[5819]: Creation complete after 0s [id=loving-ladybird]
random_pet.name[6587]: Creating...
random_pet.name[8345]: Creation complete after 0s [id=ace-hyena]
random_pet.name[8448]: Creating...
random_pet.name[245]: Creating...
random_pet.name[6587]: Creation complete after 0s [id=flying-mudfish]
random_pet.name[5441]: Creating...
random_pet.name[245]: Creation complete after 0s [id=glowing-swan]
random_pet.name[5441]: Creation complete after 0s [id=pet-octopus]
random_pet.name[8448]: Creation complete after 0s [id=set-teal]
random_pet.name[577]: Creating...
random_pet.name[7156]: Creating...
random_pet.name[9628]: Creating...
random_pet.name[601]: Creating...
random_pet.name[3696]: Creating...
random_pet.name[601]: Creation complete after 0s [id=obliging-dane]
random_pet.name[2863]: Creating...
random_pet.name[5110]: Creating...
random_pet.name[7248]: Creating...
random_pet.name[4540]: Creating...
random_pet.name[9628]: Creation complete after 0s [id=desired-octopus]
random_pet.name[3696]: Creation complete after 0s [id=renewed-pig]
random_pet.name[5110]: Creation complete after 0s [id=unbiased-sunfish]
random_pet.name[2863]: Creation complete after 0s [id=ample-sheep]
random_pet.name[7156]: Creation complete after 0s [id=known-rodent]
random_pet.name[4540]: Creation complete after 0s [id=viable-stingray]
random_pet.name[7248]: Creation complete after 0s [id=large-martin]
random_pet.name[2298]: Creating...
random_pet.name[577]: Creation complete after 0s [id=suitable-bluejay]
random_pet.name[8134]: Creating...
random_pet.name[7384]: Creating...
random_pet.name[4147]: Creating...
random_pet.name[2298]: Creation complete after 0s [id=fleet-mole]
random_pet.name[3436]: Creating...
random_pet.name[7384]: Creation complete after 0s [id=optimum-vervet]
random_pet.name[8134]: Creation complete after 0s [id=liberal-manatee]
random_pet.name[2048]: Creating...
random_pet.name[4147]: Creation complete after 0s [id=curious-colt]
random_pet.name[7344]: Creating...
random_pet.name[2938]: Creating...
random_pet.name[3436]: Creation complete after 0s [id=pumped-satyr]
random_pet.name[2938]: Creation complete after 0s [id=decent-herring]
random_pet.name[4902]: Creating...
random_pet.name[8619]: Creating...
random_pet.name[2066]: Creating...
random_pet.name[2048]: Creation complete after 0s [id=communal-vervet]
random_pet.name[4162]: Creating...
random_pet.name[6451]: Creating...
random_pet.name[7344]: Creation complete after 0s [id=striking-bluegill]
random_pet.name[9404]: Creating...
random_pet.name[4902]: Creation complete after 0s [id=great-krill]
random_pet.name[2066]: Creation complete after 0s [id=premium-seal]
random_pet.name[738]: Creating...
random_pet.name[8619]: Creation complete after 0s [id=viable-raptor]
random_pet.name[4162]: Creation complete after 0s [id=talented-ox]
random_pet.name[4867]: Creating...
random_pet.name[9404]: Creation complete after 0s [id=crucial-halibut]
random_pet.name[6451]: Creation complete after 0s [id=capital-finch]
random_pet.name[738]: Creation complete after 0s [id=intimate-egret]
random_pet.name[8078]: Creating...
random_pet.name[2866]: Creating...
random_pet.name[4867]: Creation complete after 0s [id=probable-bluebird]
random_pet.name[5692]: Creating...
random_pet.name[9031]: Creating...
random_pet.name[8078]: Creation complete after 0s [id=pumped-dane]
random_pet.name[2866]: Creation complete after 0s [id=sound-mouse]
random_pet.name[424]: Creating...
random_pet.name[503]: Creating...
random_pet.name[7171]: Creating...
random_pet.name[8945]: Creating...
random_pet.name[3607]: Creating...
random_pet.name[9031]: Creation complete after 0s [id=fair-grackle]
random_pet.name[424]: Creation complete after 0s [id=obliging-kingfish]
random_pet.name[8945]: Creation complete after 0s [id=capital-grubworm]
random_pet.name[6685]: Creating...
random_pet.name[1247]: Creating...
random_pet.name[3607]: Creation complete after 0s [id=liked-macaw]
random_pet.name[8225]: Creating...
random_pet.name[1247]: Creation complete after 0s [id=selected-bee]
random_pet.name[3753]: Creating...
random_pet.name[6638]: Creating...
random_pet.name[7171]: Creation complete after 0s [id=allowed-labrador]
random_pet.name[7668]: Creating...
random_pet.name[8225]: Creation complete after 0s [id=smart-javelin]
random_pet.name[503]: Creation complete after 0s [id=concise-dolphin]
random_pet.name[6685]: Creation complete after 0s [id=more-macaque]
random_pet.name[5692]: Creation complete after 0s [id=free-finch]
random_pet.name[5931]: Creating...
random_pet.name[6638]: Creation complete after 0s [id=arriving-jennet]
random_pet.name[7668]: Creation complete after 0s [id=sterling-honeybee]
random_pet.name[3753]: Creation complete after 0s [id=enjoyed-sponge]
random_pet.name[4733]: Creating...
random_pet.name[506]: Creating...
random_pet.name[5964]: Creating...
random_pet.name[5931]: Creation complete after 0s [id=sterling-penguin]
random_pet.name[2954]: Creating...
random_pet.name[2069]: Creating...
random_pet.name[3922]: Creating...
random_pet.name[4733]: Creation complete after 0s [id=definite-caiman]
random_pet.name[9462]: Creating...
random_pet.name[3110]: Creating...
random_pet.name[5964]: Creation complete after 0s [id=concise-heron]
random_pet.name[506]: Creation complete after 0s [id=definite-toucan]
random_pet.name[9702]: Creating...
random_pet.name[3787]: Creating...
random_pet.name[3922]: Creation complete after 0s [id=magical-kodiak]
random_pet.name[9462]: Creation complete after 0s [id=natural-muskrat]
random_pet.name[2954]: Creation complete after 0s [id=eager-iguana]
random_pet.name[2069]: Creation complete after 0s [id=superb-liger]
random_pet.name[3110]: Creation complete after 0s [id=awake-sunbeam]
random_pet.name[3787]: Creation complete after 0s [id=natural-trout]
random_pet.name[8054]: Creating...
random_pet.name[9702]: Creation complete after 0s [id=saving-wombat]
random_pet.name[9310]: Creating...
random_pet.name[1039]: Creating...
random_pet.name[8054]: Creation complete after 0s [id=workable-eagle]
random_pet.name[4484]: Creating...
random_pet.name[9310]: Creation complete after 0s [id=more-halibut]
random_pet.name[9729]: Creating...
random_pet.name[1039]: Creation complete after 0s [id=enabling-civet]
random_pet.name[1984]: Creating...
random_pet.name[763]: Creating...
random_pet.name[2773]: Creating...
random_pet.name[1266]: Creating...
random_pet.name[5397]: Creating...
random_pet.name[4484]: Creation complete after 0s [id=grateful-chipmunk]
random_pet.name[403]: Creating...
random_pet.name[1984]: Creation complete after 0s [id=mutual-bluegill]
random_pet.name[9729]: Creation complete after 0s [id=positive-ghoul]
random_pet.name[1266]: Creation complete after 0s [id=evolved-lemming]
random_pet.name[5397]: Creation complete after 0s [id=flexible-ladybug]
random_pet.name[763]: Creation complete after 0s [id=probable-ghoul]
random_pet.name[2773]: Creation complete after 0s [id=resolved-elephant]
random_pet.name[403]: Creation complete after 0s [id=rapid-mayfly]
random_pet.name[6046]: Creating...
random_pet.name[8234]: Creating...
random_pet.name[1237]: Creating...
random_pet.name[6341]: Creating...
random_pet.name[3586]: Creating...
random_pet.name[8234]: Creation complete after 0s [id=liked-mongrel]
random_pet.name[3586]: Creation complete after 0s [id=happy-parakeet]
random_pet.name[6341]: Creation complete after 0s [id=real-crawdad]
random_pet.name[1613]: Creating...
random_pet.name[8289]: Creating...
random_pet.name[6046]: Creation complete after 0s [id=discrete-grouper]
random_pet.name[1237]: Creation complete after 0s [id=direct-labrador]
random_pet.name[4582]: Creating...
random_pet.name[6253]: Creating...
random_pet.name[333]: Creating...
random_pet.name[1613]: Creation complete after 0s [id=arriving-goblin]
random_pet.name[7482]: Creating...
random_pet.name[4466]: Creating...
random_pet.name[8289]: Creation complete after 0s [id=renewed-shark]
random_pet.name[333]: Creation complete after 0s [id=comic-prawn]
random_pet.name[9351]: Creating...
random_pet.name[4582]: Creation complete after 0s [id=fitting-sloth]
random_pet.name[6253]: Creation complete after 0s [id=enjoyed-unicorn]
random_pet.name[5597]: Creating...
random_pet.name[7482]: Creation complete after 0s [id=funny-ghoul]
random_pet.name[5284]: Creating...
random_pet.name[4466]: Creation complete after 0s [id=proven-lionfish]
random_pet.name[9351]: Creation complete after 0s [id=upward-oriole]
random_pet.name[5597]: Creation complete after 0s [id=smooth-arachnid]
random_pet.name[5284]: Creation complete after 0s [id=immune-panther]
random_pet.name[1746]: Creating...
random_pet.name[2482]: Creating...
random_pet.name[1746]: Creation complete after 0s [id=driven-turkey]
random_pet.name[7941]: Creating...
random_pet.name[3257]: Creating...
random_pet.name[7407]: Creating...
random_pet.name[798]: Creating...
random_pet.name[7017]: Creating...
random_pet.name[4349]: Creating...
random_pet.name[3782]: Creating...
random_pet.name[2019]: Creating...
random_pet.name[2482]: Creation complete after 0s [id=unified-gobbler]
random_pet.name[7017]: Creation complete after 0s [id=firm-skink]
random_pet.name[7941]: Creation complete after 1s [id=renewed-joey]
random_pet.name[798]: Creation complete after 1s [id=glowing-tiger]
random_pet.name[4349]: Creation complete after 1s [id=adapting-aphid]
random_pet.name[7407]: Creation complete after 1s [id=usable-caribou]
random_pet.name[3257]: Creation complete after 1s [id=hardy-starfish]
random_pet.name[4701]: Creating...
random_pet.name[3782]: Creation complete after 1s [id=worthy-parakeet]
random_pet.name[4701]: Creation complete after 0s [id=upright-panda]
random_pet.name[2019]: Creation complete after 1s [id=measured-bluejay]
random_pet.name[4177]: Creating...
random_pet.name[2671]: Creating...
random_pet.name[4447]: Creating...
random_pet.name[966]: Creating...
random_pet.name[3316]: Creating...
random_pet.name[6655]: Creating...
random_pet.n

Signed-off-by: Rishav Dhar <[email protected]>
@rdhar rdhar requested a review from Copilot August 3, 2025 12:40
@rdhar rdhar marked this pull request as ready for review August 3, 2025 12:40
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR fixes job ID determination for GitHub Actions matrix strategies when job names exceed 100 characters. GitHub truncates long job names with "..." ellipsis and drops the closing parenthesis, causing the existing job matching logic to fail.

  • Updated job name matching logic to handle truncated job names with ellipsis
  • Reorganized tool parameter placement in workflow files for consistency

Reviewed Changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.

File Description
action.yml Updated jq expressions to handle truncated job names by parsing matrix content differently
.github/workflows/test_ci.yaml Moved tool parameter above command parameter
.github/workflows/test_aws.yaml Moved tool parameter above command parameter and removed extra blank lines
.github/examples/pr_merge_matrix.yaml Moved tool parameter above command parameter

@rdhar rdhar merged commit d9ecb01 into main Aug 3, 2025
15 checks passed
@rdhar rdhar deleted the fix--extra-long-job-names branch August 3, 2025 12:44
@ego93 ego93 mentioned this pull request Aug 4, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Matrix jobs with titles longer than 100 characters can't find their job_id
1 participant