Skip to content

Commit

Permalink
add workflow_call to release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xsalefter committed Jun 9, 2023
1 parent 24ce1d6 commit ac09c20
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: release

on:
# needed because this workflow included in release-repo-dispatch.yml
workflow_call:

workflow_dispatch:
inputs:
commons_version:
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
<check.skip-enforcer>false</check.skip-enforcer>
<check.skip-rat>false</check.skip-rat>
<check.skip-spotbugs>false</check.skip-spotbugs>
<check.spotbugs-exclude-filter-file />
<check.spotbugs-exclude-filter-file/>
<compiler.fail-warnings>false</compiler.fail-warnings>
<deploy.deploy-at-end>true</deploy.deploy-at-end>
<derby.version>10.15.2.0</derby.version>
Expand Down Expand Up @@ -146,8 +146,8 @@
<osgi.annotation.version>8.1.0</osgi.annotation.version>
<osgi.dependency>*;scope=compile|runtime;inline=true</osgi.dependency>
<osgi.description>${project.description}</osgi.description>
<osgi.export />
<osgi.extra-import />
<osgi.export/>
<osgi.extra-import/>
<osgi.fixupmessages>"Classes found in the wrong directory...","Unused Import-Package instructions...","While traversing the type tree for...";is:=ignore</osgi.fixupmessages>
<osgi.import>
${osgi.extra-import},
Expand Down Expand Up @@ -211,7 +211,7 @@
</osgi.import>
<osgi.name>${project.name}</osgi.name>
<osgi.noclassforname>true</osgi.noclassforname>
<osgi.private />
<osgi.private/>
<osgi.symbolic-name>${project.groupId}.${project.artifactId}</osgi.symbolic-name>
<osgi.transitive-dependency>true</osgi.transitive-dependency>
<osgi.version>8.0.0</osgi.version>
Expand Down Expand Up @@ -1900,7 +1900,7 @@
<include>junit:junit:[4.11,)</include>
</includes>
</bannedDependencies>
<banDuplicatePomDependencyVersions />
<banDuplicatePomDependencyVersions/>
<requireUpperBoundDeps>
<excludes>
<!-- Wildcards don't seem to work -->
Expand Down Expand Up @@ -2145,8 +2145,8 @@
<skip>${check.skip-rat}</skip>
<ignoreErrors>${check.ignore-rat}</ignoreErrors>
<licenseFamilies>
<licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily" />
<licenseFamily implementation="org.apache.rat.license.MITLicenseFamily" />
<licenseFamily implementation="org.apache.rat.license.Apache20LicenseFamily"/>
<licenseFamily implementation="org.apache.rat.license.MITLicenseFamily"/>
</licenseFamilies>
<useDefaultExcludes>true</useDefaultExcludes>
<parseSCMIgnoresAsExcludes>true</parseSCMIgnoresAsExcludes>
Expand Down

0 comments on commit ac09c20

Please sign in to comment.