-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
287 changed files
with
8,570 additions
and
3,225 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,61 @@ | ||
# -*- mode: yaml -*- | ||
|
||
manifest: | ||
version: 1.0 | ||
|
||
size: | ||
is: | ||
small: {{ branch.diff.size < 100 }} | ||
medium: {{ branch.diff.size >= 100 and branch.diff.size < 300 }} | ||
large: {{ branch.diff.size >= 300 }} | ||
|
||
color: | ||
small: "76DBBE" | ||
medium: "2986CC" | ||
large: "C90076" | ||
waiting-for-review: "EDEDED" | ||
|
||
automations: | ||
reviewer-assignment: | ||
if: | ||
- {{ pr.draft == false and pr.reviewers.length == 0 and pr.approvals.length == 0 }} | ||
run: | ||
- action: add-reviewers@v1 | ||
args: | ||
reviewers: [autolab/developers-current] | ||
|
||
size-labeling-small: | ||
if: | ||
- {{ size.is.small }} | ||
run: | ||
- action: add-label@v1 | ||
args: | ||
label: "small" | ||
color: {{ color.small }} | ||
|
||
size-labeling-medium: | ||
if: | ||
- {{ size.is.medium }} | ||
run: | ||
- action: add-label@v1 | ||
args: | ||
label: "medium" | ||
color: {{ color.medium }} | ||
|
||
size-labeling-large: | ||
if: | ||
- {{ size.is.large }} | ||
run: | ||
- action: add-label@v1 | ||
args: | ||
label: "large" | ||
color: {{ color.large }} | ||
|
||
check-approvals: | ||
if: | ||
- {{ pr.draft == false and pr.approvals.length == 0 }} | ||
run: | ||
- action: add-label@v1 | ||
args: | ||
label: "waiting-for-review" | ||
color: {{ color["waiting-for-review"] }} |
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,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Code generated by gitStream GitHub app - DO NOT EDIT | ||
|
||
name: gitStream workflow automation | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
client_payload: | ||
description: The Client payload | ||
required: true | ||
full_repository: | ||
description: the repository name include the owner in `owner/repo_name` format | ||
required: true | ||
head_ref: | ||
description: the head sha | ||
required: true | ||
base_ref: | ||
description: the base ref | ||
required: true | ||
installation_id: | ||
description: the installation id | ||
required: false | ||
resolver_url: | ||
description: the resolver url to pass results to | ||
required: true | ||
resolver_token: | ||
description: Optional resolver token for resolver service | ||
required: false | ||
default: '' | ||
|
||
jobs: | ||
gitStream: | ||
timeout-minutes: 5 | ||
# uncomment this condition, if you dont want any automation on dependabot PRs | ||
# if: github.actor != 'dependabot[bot]' | ||
runs-on: ubuntu-latest | ||
name: gitStream workflow automation | ||
steps: | ||
- name: Evaluate Rules | ||
uses: linear-b/gitstream-github-action@v2 | ||
id: rules-engine | ||
with: | ||
full_repository: ${{ github.event.inputs.full_repository }} | ||
head_ref: ${{ github.event.inputs.head_ref }} | ||
base_ref: ${{ github.event.inputs.base_ref }} | ||
client_payload: ${{ github.event.inputs.client_payload }} | ||
installation_id: ${{ github.event.inputs.installation_id }} | ||
resolver_url: ${{ github.event.inputs.resolver_url }} | ||
resolver_token: ${{ github.event.inputs.resolver_token }} |
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
Oops, something went wrong.