Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/open-pr.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
name: open-pr
permissions:
contents: read
pull-requests: write
on:
pull_request:
env:
Expand All @@ -12,6 +9,9 @@ jobs:
scan-and-compare:
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-24.04
permissions:
contents: read
pull-requests: write
steps:
- name: checkout code in PR branch
uses: actions/checkout@v6
Expand Down Expand Up @@ -76,7 +76,6 @@ jobs:
uses: docker/github-builder/.github/workflows/build.yml@v1
permissions:
contents: read # to fetch the repository content
id-token: write # for signing attestation(s) with GitHub OIDC Token
with:
output: image
push: false
Expand All @@ -96,6 +95,8 @@ jobs:
password: ${{ secrets.DOCKER_PAT }}
make-compose-test:
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: checkout code
uses: actions/checkout@v6
Expand All @@ -120,6 +121,8 @@ jobs:
make compose-test
make-k8s-test:
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: checkout code
uses: actions/checkout@v6
Expand Down