File tree Expand file tree Collapse file tree 4 files changed +11
-7
lines changed
src/Internal/Containers/Models/Address Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1
- name : Auto assign issues
1
+ name : Auto assign issues and pull requests
2
2
3
3
on :
4
4
issues :
5
5
types :
6
6
- opened
7
+ pull_request :
8
+ types :
9
+ - opened
7
10
8
11
jobs :
9
12
run :
@@ -12,11 +15,11 @@ jobs:
12
15
issues : write
13
16
pull-requests : write
14
17
steps :
15
- - name : Assign issues
16
- uses : gustavofreze/auto-assign@1.0.0
18
+ - name : Assign issues and pull requests
19
+ uses : gustavofreze/auto-assign@1.1.4
17
20
with :
18
21
assignees : ' ${{ secrets.ASSIGNEES }}'
19
22
github_token : ' ${{ secrets.GITHUB_TOKEN }}'
20
23
allow_self_assign : ' true'
21
24
allow_no_assignees : ' true'
22
- assignment_options : ' ISSUE'
25
+ assignment_options : ' ISSUE,PULL_REQUEST '
Original file line number Diff line number Diff line change 42
42
"php" : " ^8.3" ,
43
43
"symfony/process" : " ^7.1" ,
44
44
"tiny-blocks/ksuid" : " ^1" ,
45
+ "tiny-blocks/mapper" : " ^1" ,
45
46
"tiny-blocks/collection" : " ^1"
46
47
},
47
48
"require-dev" : {
Original file line number Diff line number Diff line change 5
5
namespace TinyBlocks \DockerContainer \Internal \Containers \Models \Address ;
6
6
7
7
use TinyBlocks \Collection \Collection ;
8
- use TinyBlocks \Collection \PreserveKeys ;
9
8
use TinyBlocks \DockerContainer \Contracts \Ports as ContainerPorts ;
9
+ use TinyBlocks \Mapper \KeyPreservation ;
10
10
11
11
final readonly class Ports implements ContainerPorts
12
12
{
@@ -18,7 +18,7 @@ public static function createFrom(array $elements): Ports
18
18
{
19
19
$ exposedPorts = Collection::createFrom ($ elements ['exposedPorts ' ])
20
20
->filter ()
21
- ->toArray (preserveKeys: PreserveKeys ::DISCARD );
21
+ ->toArray (keyPreservation: KeyPreservation ::DISCARD );
22
22
23
23
return new Ports (exposedPorts: $ exposedPorts );
24
24
}
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public function testMultipleContainersAreRunSuccessfully(): void
47
47
/** @Given a Flyway container is configured to perform database migrations */
48
48
$ jdbcUrl = $ mySQLContainer ->getJdbcUrl ();
49
49
50
- $ flywayContainer = GenericDockerContainer::from (image: 'flyway/flyway:11.0 .0 ' )
50
+ $ flywayContainer = GenericDockerContainer::from (image: 'flyway/flyway:11.1 .0 ' )
51
51
->withNetwork (name: 'tiny-blocks ' )
52
52
->copyToContainer (pathOnHost: '/test-adm-migrations ' , pathOnContainer: '/flyway/sql ' )
53
53
->withVolumeMapping (pathOnHost: '/test-adm-migrations ' , pathOnContainer: '/flyway/sql ' )
You can’t perform that action at this time.
0 commit comments