forked from eclipse-pde/eclipse.pde
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from laeubi/bumpbundles
Add workflow to test bundle bumps
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Update Bundle Dependencies Version Range | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
on: | ||
push: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
# schedule: | ||
# - cron: '0 0 * * *' | ||
|
||
jobs: | ||
update-manifest: | ||
uses: laeubi/eclipse.platform.releng.aggregator/.github/workflows/updateBundles.yml@shared_update_bundles | ||
with: | ||
author: Eclipse Releng Bot <[email protected]> | ||
maven-goals: -Dcompare-version-with-baselines.skip=false -Papi-check -Dtycho.bump-versions.increment=100 -Djgit.dirtyWorkingTree-platformDefault=warning clean verify | ||
push-to-fork: laeubi/pde | ||
bump-bundles: false | ||
secrets: | ||
token: ${{ secrets.PR_PAT }} |