Skip to content

Commit

Permalink
Enabled GH Jobs execution for 'releases/**' branches, both PR and pus…
Browse files Browse the repository at this point in the history
…h events (#1558) (#1560)

* Enabled GH Jobs execution for 'releases/**' branches, both PR and push events

* Enabled GH Jobs execution for 'releases/**' branches for dependendant projects

* Added 'ref' value for dependendant projects

* Removed debug info
  • Loading branch information
mrizzi committed Nov 15, 2022
1 parent 1a1a12a commit c576c4f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/pr_build_jdk11.yml
@@ -1,9 +1,14 @@
name: Windup PR builder for JDK11
name: Windup PR/Push builder for JDK11

on:
pull_request:
branches:
- master
- 'releases/**'
push:
branches:
- master
- 'releases/**'

jobs:

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pr_build_jdk11_dependents.yml
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
branches:
- master
- 'releases/**'

jobs:
windup-build:
Expand Down Expand Up @@ -39,6 +40,7 @@ jobs:
uses: actions/checkout@v2.3.4
with:
repository: windup/windup-rulesets
ref: ${{ github.base_ref }}
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
Expand All @@ -65,6 +67,7 @@ jobs:
uses: actions/checkout@v2.3.4
with:
repository: windup/windup-maven-plugin
ref: ${{ github.base_ref }}
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
Expand Down

0 comments on commit c576c4f

Please sign in to comment.