Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build
on:
push:
merge_group:
pull_request:
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Can we also run build on master and release branches push ?

types:
- opened
Expand All @@ -10,7 +10,11 @@ on:
pull_request_target:
types:
- labeled
merge_group:
push:
branches:
- 'master'
- 'release-*'
workflow_dispatch:

jobs:
build:
Expand All @@ -33,4 +37,4 @@ jobs:
secrets: inherit
permissions:
id-token: write
contents: write
contents: write
16 changes: 16 additions & 0 deletions .github/workflows/pullrequest-trust-helper.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on:
pull_request_target:
types:
- opened
- edited
- reopened
- synchronize

jobs:
pullrequest-trusted-helper:
permissions:
pull-requests: write
secrets: inherit # access to `GitHub-Actions`-App is needed to read teams
uses: gardener/cc-utils/.github/workflows/pullrequest-trust-helper.yaml@master
with:
trusted-teams: 'core,gardener-extension-provider-aws-maintainers'
Loading