-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into pm-14302-Suspended-icon-remains-after-the-su…
…spended-org-status-updated-to-Active
- Loading branch information
Showing
1,603 changed files
with
5,465 additions
and
742 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Build Browser on PR Target | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, synchronize] | ||
branches-ignore: | ||
- 'l10n_master' | ||
- 'cf-pages' | ||
paths: | ||
- 'apps/browser/**' | ||
- 'libs/**' | ||
- '*' | ||
- '!*.md' | ||
- '!*.txt' | ||
workflow_call: | ||
inputs: {} | ||
workflow_dispatch: | ||
inputs: | ||
sdk_branch: | ||
description: "Custom SDK branch" | ||
required: false | ||
type: string | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
check-run: | ||
name: Check PR run | ||
uses: bitwarden/gh-actions/.github/workflows/check-run.yml@main | ||
|
||
run-workflow: | ||
name: Run Build Browser on PR Target | ||
needs: check-run | ||
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }} | ||
uses: ./.github/workflows/build-browser.yml | ||
secrets: inherit | ||
|
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Build CLI on PR Target | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, synchronize] | ||
branches-ignore: | ||
- 'l10n_master' | ||
- 'cf-pages' | ||
paths: | ||
- 'apps/cli/**' | ||
- 'libs/**' | ||
- '*' | ||
- '!*.md' | ||
- '!*.txt' | ||
- '.github/workflows/build-cli.yml' | ||
- 'bitwarden_license/bit-cli/**' | ||
workflow_dispatch: | ||
inputs: | ||
sdk_branch: | ||
description: "Custom SDK branch" | ||
required: false | ||
type: string | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
check-run: | ||
name: Check PR run | ||
uses: bitwarden/gh-actions/.github/workflows/check-run.yml@main | ||
|
||
run-workflow: | ||
name: Run Build CLI on PR Target | ||
needs: check-run | ||
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }} | ||
uses: ./.github/workflows/build-cli.yml | ||
secrets: inherit | ||
|
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Build Desktop on PR Target | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, synchronize] | ||
branches-ignore: | ||
- 'l10n_master' | ||
- 'cf-pages' | ||
paths: | ||
- 'apps/desktop/**' | ||
- 'libs/**' | ||
- '*' | ||
- '!*.md' | ||
- '!*.txt' | ||
- '.github/workflows/build-desktop.yml' | ||
workflow_dispatch: | ||
inputs: | ||
sdk_branch: | ||
description: "Custom SDK branch" | ||
required: false | ||
type: string | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
check-run: | ||
name: Check PR run | ||
uses: bitwarden/gh-actions/.github/workflows/check-run.yml@main | ||
|
||
run-workflow: | ||
name: Run Build Desktop on PR Target | ||
needs: check-run | ||
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }} | ||
uses: ./.github/workflows/build-desktop.yml | ||
secrets: inherit | ||
|
Oops, something went wrong.