We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15e8d59 commit f4f9a2eCopy full SHA for f4f9a2e
.github/workflows/ci.yml
@@ -9,9 +9,19 @@ on:
9
branches-ignore:
10
- 'main'
11
pull_request:
12
+ branches:
13
+ - main
14
15
jobs:
16
CI:
17
uses: eclipse-lmos/.github/.github/workflows/gradle-ci.yml@main
18
+ if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
19
permissions:
20
contents: read
21
+ dependabot:
22
+ uses: eclipse-lmos/.github/.github/workflows/dependabot-automerge.yml@main
23
+ if: needs.CI.result == 'success'
24
+ needs: CI
25
+ permissions:
26
+ contents: write
27
+ pull-requests: write
.github/workflows/dependabot-automerge.yml
0 commit comments