Skip to content

Commit be503b5

Browse files
author
Theresa Lehr
committed
resolving merge conflicts
1 parent 126aa98 commit be503b5

File tree

8 files changed

+78
-32
lines changed

8 files changed

+78
-32
lines changed
Lines changed: 47 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,63 @@
1+
<<<<<<< HEAD
2+
=======
3+
## -----------------------------------------------------------------------------
4+
# Copyright (c) Microsoft Corporation. All rights reserved.
5+
# Licensed under the MIT License. See LICENSE.txt in the project root for license information.
6+
## -----------------------------------------------------------------------------
7+
#
8+
# Summary:
9+
# This GitHub Actions workflow automates the release process using Release Please.
10+
# It triggers on pushes to the main branch, generates a GitHub App token using organization
11+
# variables and secrets, and then runs the release-please-action to manage versioning and changelogs.
12+
13+
>>>>>>> dev
114
name: Release Please for Master
215

316
on:
417
push:
518
branches:
619
- dev # Trigger when dev is updated
20+
workflow_dispatch: # Allow manual triggering from GitHub UI
21+
inputs:
22+
reason:
23+
description: 'Reason for manual trigger'
24+
required: false
25+
default: 'Manual release trigger'
26+
dry_run:
27+
description: 'Perform dry run (no actual release)'
28+
required: false
29+
type: boolean
30+
default: false
731

832
jobs:
933
release-please-master:
1034
runs-on: ubuntu-latest
1135
steps:
36+
- name: Log manual trigger details
37+
if: github.event_name == 'workflow_dispatch'
38+
run: |
39+
echo "Manual trigger initiated"
40+
echo "Reason: ${{ github.event.inputs.reason }}"
41+
echo "Dry run: ${{ github.event.inputs.dry_run }}"
42+
echo "Triggered by: ${{ github.actor }}"
43+
1244
- name: Checkout repository
13-
uses: actions/checkout@v3
45+
uses: actions/checkout@v4
46+
47+
- name: Generate GitHub App token
48+
id: app-token
49+
uses: actions/create-github-app-token@v2
50+
with:
51+
app-id: ${{ vars.RELEASE_PLEASE_TOKEN_PROVIDER_APP_ID }}
52+
private-key: ${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM }}
1453

15-
- name: Run Release Please for Master
54+
- name: Release Please
1655
uses: googleapis/release-please-action@v4
1756
with:
18-
token: ${{ secrets.GITHUB_TOKEN }}
19-
target-branch: master
57+
token: ${{ steps.app-token.outputs.token }}
2058
config-file: release-please-config.json
21-
manifest-file: .release-please-manifest.json
59+
manifest-file: .release-please-manifest.json
60+
manifest: true
61+
primaryBranch: dev
62+
handleGHRelease: true
63+
dry-run: ${{ github.event.inputs.dry_run == 'true' }}

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "11.1.3"
2+
".": "11.1.4"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [11.1.4](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v11.1.3...v11.1.4) (2025-10-27)
6+
7+
8+
### Bug Fixes
9+
10+
* dummy--readme updates ([#3986](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/issues/3986)) ([aab4e11](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/aab4e117ad4b8f4bf002a2ce2c428cecbe1b9a85))
11+
* upgrading axios version inside tarbell ([#3985](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/issues/3985)) ([f7b1424](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/f7b1424e5b0bc634185c6a467e2bb9f815a6ddb9))
12+
513
## [11.1.3](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v11.1.2...v11.1.3) (2025-07-10)
614

715

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ The Graph Explorer is written in [TypeScript](https://www.typescriptlang.org/) a
1313

1414
Microsoft Graph Explorer is built and developed using node v18.
1515

16-
- `npm install` to install project dependencies. `npm` is installed by default with [Node.js](https://nodejs.org/).
16+
- `npm install` to install project dependencies. `npm` is installed by default with [Node.js](https://nodejs.org/). If you have issues with packages, try using Node version 18.20.0 locally when you try to run.
17+
- `npm run build` to build the project.
1718
- `npm start` starts the TypeScript compiler in watch mode and the local server. It should open your browser automatically with the Graph Explorer at [http://localhost:3000/](http://localhost:3000).
1819

1920
### Enabling authentication with your own credentials

package-lock.json

Lines changed: 17 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graph-explorer-v2",
3-
"version": "11.1.3",
3+
"version": "11.1.4",
44
"private": true,
55
"dependencies": {
66
"@augloop/types-core": "file:packages/types-core-2.16.189.tgz",
@@ -34,7 +34,7 @@
3434
"eslint-config-react-app": "7.0.1",
3535
"eslint-webpack-plugin": "4.1.0",
3636
"express": "5.1.0",
37-
"expvariantassignmentsdk": "file:packages/expvariantassignmentsdk-1.0.0.tgz",
37+
"expvariantassignmentsdk": "file:packages/expvariantassignmentsdk-1.0.1.tgz",
3838
"file-loader": "6.2.0",
3939
"fork-ts-checker-webpack-plugin": "9.0.2",
4040
"fs-extra": "11.3.0",
5.57 KB
Binary file not shown.

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ sonar.projectKey=microsoftgraph_microsoft-graph-explorer-v4
22
sonar.organization=microsoftgraph2
33
sonar.projectName=microsoft-graph-explorer-v4
44
// x-release-please-start-version
5-
sonar.projectVersion=11.1.3
5+
sonar.projectVersion=11.1.4
66
// x-release-please-end
77
sonar.host.url=https://sonarcloud.io
88

0 commit comments

Comments
 (0)