Skip to content

Commit 712628d

Browse files
authored
Enable container integration test to run on Dependabot PRs (#4870)
1 parent 4bc81ec commit 712628d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/build-containers.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
on:
22
workflow_call:
3+
permissions:
4+
packages: write
35
jobs:
46
containers:
57
runs-on: ubuntu-22.04

.github/workflows/build-db-container.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
on:
22
workflow_call:
3+
permissions:
4+
packages: write
35
jobs:
46
db-container:
57
runs-on: ubuntu-22.04

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,16 +125,13 @@ jobs:
125125
uses: ./.github/workflows/build-windows.yml
126126
secrets: inherit
127127
containers:
128-
if: ${{ github.actor != 'dependabot[bot]' }}
129128
uses: ./.github/workflows/build-containers.yml
130129
secrets: inherit
131130
db-container:
132-
if: ${{ github.actor != 'dependabot[bot]' }}
133131
uses: ./.github/workflows/build-db-container.yml
134132
secrets: inherit
135133
# See /src/container-integration-test/README.md
136134
container-test:
137-
if: ${{ github.actor != 'dependabot[bot]' }}
138135
needs: [ 'containers', 'db-container' ]
139136
uses: ./.github/workflows/container-integration-test.yml
140137
secrets: inherit

0 commit comments

Comments
 (0)