1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-02-25 00:52:53 +00:00

Compare commits

...

4 Commits

Author SHA1 Message Date
Brandon
f5faf87ceb add required secrets for check run 2026-02-18 12:09:12 -05:00
Brandon
98e459a5fc add check run workflow 2026-02-18 11:57:40 -05:00
renovate[bot]
1fd8bf318f [deps]: Update webpack to v5.105.1 (#999)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-17 11:49:12 -05:00
renovate[bot]
c472d5e199 [deps]: Lock file maintenance (#1001)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jared <TheWolfBadger@gmail.com>
2026-02-17 11:04:46 -05:00
4 changed files with 1355 additions and 852 deletions

49
.github/workflows/build-target.yml vendored Normal file
View File

@@ -0,0 +1,49 @@
# This workflow is intended to be run when we need to build the client and produce artifacts
# that require secrets when the PR source branch does not have access to secrets (e.g. a fork).
# This workflow will run in the context of the target of the PR and have access to secrets.
# This should only be done after reviewing the PR to ensure that no malicious code has been
# introduced, as it could allow the code on the forked branch to have access to workflow secrets.
name: Build on PR Target
on:
pull_request_target:
types: [opened, synchronize, reopened]
branches:
- main
paths:
- 'src/**'
- 'src-cli/**'
- 'jslib/**'
- 'resources/**'
- 'scripts/**'
- 'package.json'
- 'package-lock.json'
- 'tsconfig.json'
- 'angular.json'
- '.github/workflows/build.yml'
- '!*.md'
- '!*.txt'
defaults:
run:
shell: bash
permissions: {}
jobs:
check-run:
name: Check PR run
uses: bitwarden/gh-actions/.github/workflows/check-run.yml@main
permissions:
contents: read
run-workflow:
name: Run Build
needs: check-run
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
uses: ./.github/workflows/build.yml
secrets: inherit
permissions:
contents: read
id-token: write

View File

@@ -8,6 +8,16 @@ on:
- "rc"
- "hotfix-rc"
workflow_dispatch: {}
workflow_call:
secrets:
Azure-KV-CI-Service-Principal:
required: true
AZURE_SUBSCRIPTION_ID:
required: true
AZURE_TENANT_ID:
required: true
AZURE_CLIENT_ID:
required: true
permissions:
contents: read

2146
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -137,7 +137,7 @@
"tsconfig-paths-webpack-plugin": "4.2.0",
"type-fest": "5.4.2",
"typescript": "5.9.3",
"webpack": "5.104.1",
"webpack": "5.105.1",
"webpack-cli": "6.0.1",
"webpack-merge": "6.0.1",
"webpack-node-externals": "3.0.0",