Skip to content

Commit fa7c576

Browse files
committed
google patch[setup]: fix build and clean readme.
Signed-off-by: bwplotka <bwplotka@gmail.com>
1 parent 81d2e02 commit fa7c576

21 files changed

Lines changed: 158 additions & 997 deletions

.circleci/config.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/CODEOWNERS

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 0 additions & 74 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/dependabot.yaml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Copyright 2025 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# https://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
version: 2
15+
updates:
16+
- package-ecosystem: "gomod"
17+
directory: "/"
18+
schedule:
19+
interval: "weekly"
20+
groups:
21+
all:
22+
patterns:
23+
- "*"
24+
open-pull-requests-limit: 0 # This ensures, only security updates will be created.
25+
- package-ecosystem: "npm"
26+
directory: "/web/ui"
27+
schedule:
28+
interval: "weekly"
29+
groups:
30+
all:
31+
patterns:
32+
- "*"
33+
open-pull-requests-limit: 0 # This ensures, only security updates will be created.
34+
- package-ecosystem: "github-actions"
35+
directory: "/"
36+
schedule:
37+
interval: "weekly"
38+
groups:
39+
all:
40+
patterns:
41+
- "*"
42+
open-pull-requests-limit: 0 # This ensures, only security updates will be created.
43+
- package-ecosystem: "docker"
44+
directory: "/"
45+
schedule:
46+
interval: "weekly"
47+
groups:
48+
all:
49+
patterns:
50+
- "*"
51+
open-pull-requests-limit: 0 # This ensures, only security updates will be created.

.github/dependabot.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/stale.yml

Lines changed: 0 additions & 56 deletions
This file was deleted.
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Copyright 2025 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
name: Dependabot auto-merge
16+
on: pull_request
17+
18+
concurrency:
19+
group: ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
20+
cancel-in-progress: true
21+
22+
permissions:
23+
contents: write
24+
pull-requests: write
25+
26+
jobs:
27+
dependabot:
28+
runs-on: ubuntu-latest
29+
if: ${{ github.actor == 'dependabot[bot]' }}
30+
steps:
31+
- name: Dependabot metadata
32+
id: metadata
33+
uses: dependabot/fetch-metadata@dbb049abf0d677abbd7f7eee0375145b417fdd34 # v2.2.0
34+
with:
35+
github-token: "${{ secrets.GITHUB_TOKEN }}"
36+
- name: Enable auto-merge for Dependabot PRs
37+
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor' || steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
38+
run: gh pr merge --auto --merge "$PR_URL"
39+
env:
40+
PR_URL: ${{github.event.pull_request.html_url}}
41+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)