-
Notifications
You must be signed in to change notification settings - Fork 135
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 #2006 from microsoftgraph/chore/default-to-main
Change default branch to main
- Loading branch information
Showing
8 changed files
with
21 additions
and
21 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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
manifest: true | ||
primaryBranch: dev | ||
primaryBranch: main | ||
handleGHRelease: true |
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
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
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
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
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 |
---|---|---|
|
@@ -2,9 +2,9 @@ name: Gradle Build and Compare Package | |
|
||
on: | ||
push: | ||
branches: [dev, support/5.x.x] | ||
branches: [main, support/5.x.x] | ||
pull_request: | ||
branches: [dev, support/5.x.x] | ||
branches: [main, support/5.x.x] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
@@ -47,14 +47,14 @@ jobs: | |
gradle.properties | ||
**/gradle/** | ||
Scripts/** | ||
compare-packages: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
env: | ||
env: | ||
CURRENT_PKG_DIFF: ./artifacts/current/build/libs/msgraph-sdk-java.jar | ||
PRIOR_PKG_DIFF: ./artifacts/previous/build/libs/msgraph-sdk-java.jar | ||
steps: | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
|
@@ -64,22 +64,22 @@ jobs: | |
cache: gradle | ||
- name: Download Current Build | ||
uses: actions/download-artifact@v4 | ||
with: | ||
with: | ||
name: drop | ||
path: artifacts/current/ | ||
- name: Download Last Successful Build | ||
uses: dawidd6/[email protected] | ||
with: | ||
with: | ||
workflow: preview-and-release.yml | ||
workflow_conclusion: success | ||
branch: dev | ||
event: push | ||
name: drop | ||
path: artifacts/previous/ | ||
- name: Run PKG Diff | ||
- name: Run PKG Diff | ||
continue-on-error: true | ||
run: | | ||
sudo apt install pkgdiff | ||
sudo apt install pkgdiff | ||
pkgdiff -hide-unchanged ${{ env.PRIOR_PKG_DIFF }} ${{ env.CURRENT_PKG_DIFF }} | ||
- name: Upload Diff Artifact | ||
if: ${{ always() }} | ||
|
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