Skip to content

Commit

Permalink
Configure Renovate (#2)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

Welcome to [Renovate](https://togithub.com/renovatebot/renovate)! This
is an onboarding PR to help you understand and configure settings before
regular Pull Requests begin.

🚦 To activate Renovate, merge this Pull Request. To disable Renovate,
simply close this Pull Request unmerged.



---
### Detected Package Files

 * `Dockerfile` (dockerfile)
 * `.github/workflows/continuous-integration.yml` (github-actions)
 * `.github/workflows/image-cleanup.yml` (github-actions)
 * `.github/workflows/release-please.yml` (github-actions)
 * `.github/workflows/release.yml` (github-actions)
 * `go.mod` (gomod)
 * `.nvmrc` (nvm)

### Configuration Summary

Based on the default config's presets, Renovate will:

  - Start dependency updates only once this onboarding PR is merged
  - Show all Merge Confidence badges for pull requests.
  - Enable Renovate Dependency Dashboard creation.
- Use semantic commit type `fix` for dependencies and `chore` for all
others if semantic commits are in use.
- Ignore `node_modules`, `bower_components`, `vendor` and various
test/tests directories.
  - Group known monorepo packages together.
  - Use curated list of recommended non-monorepo package groupings.
  - Apply crowd-sourced package replacement rules.
  - Apply crowd-sourced workarounds for known problems with packages.
  - Automerge `patch` and `minor` upgrades if they pass tests.

🔡 Would you like to change the way Renovate is upgrading your
dependencies? Simply edit the `renovate.json` in this branch with your
custom config and the list of Pull Requests in the "What to Expect"
section below will be updated the next time Renovate runs.

---

### What to Expect

With your current configuration, Renovate will create 3 Pull Requests:

<details>
<summary>fix(deps): update golang.org/x/exp digest to d852ddb</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/golang.org-x-exp-digest`
  - Merge into: `main`
- Upgrade golang.org/x/exp to `d852ddb80c63fe1450931926cbda40f05fe08c7b`


</details>

<details>
<summary>fix(deps): update module github.com/urfave/cli/v2 to
v2.25.7</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/github.com-urfave-cli-v2-2.x`
  - Merge into: `main`
- Upgrade [github.com/urfave/cli/v2](https://togithub.com/urfave/cli) to
`v2.25.7`


</details>

<details>
<summary>chore(deps): update golang docker tag to v1.21</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/golang-1.x`
  - Merge into: `main`
  - Upgrade golang to `1.21-alpine`


</details>

<br />

🚸 Branch creation will be limited to maximum 2 per hour, so it doesn't
swamp any CI resources or overwhelm the project. See docs for
`prhourlylimit` for details.


---

❓ Got questions? Check out Renovate's
[Docs](https://docs.renovatebot.com/), particularly the Getting Started
section.
If you need any further assistance then you can also [request help
here](https://togithub.com/renovatebot/renovate/discussions).


---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/angular-static-server/angular-static-server).


<!--renovate-config-hash:c503a5e6061ecc717643964223fd29ca2bf0052220f94502156af672100a3869-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Lukas Spirig <lukas.spirig@gmail.com>
  • Loading branch information
renovate[bot] and kyubisation committed Aug 19, 2023
1 parent 30393ac commit 0e98e18
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ jobs:
if: github.repository.fork == false
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io --username ${{ github.actor }} --password-stdin
- name: Container
run: docker build --tag $IMAGE_REPO:${{ github.ref_name }} .
run: docker build --tag $IMAGE_REPO:$(echo "${{ github.ref_name }}" | tr / _) .
env:
DOCKER_BUILDKIT: 1
- name: 'Container: Publish image'
if: github.repository.fork == false
run: docker push $IMAGE_REPO:${{ github.ref_name }}
run: docker push $IMAGE_REPO:$(echo "${{ github.ref_name }}" | tr / _)
23 changes: 23 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", ":automergeMinor"],
"automergeStrategy": "squash",
"ignoreDeps": [
"typescript",
"zone.js"
],
"packageRules": [
{
"matchManagers": ["npm"],
"groupName": "angular",
"matchPackagePrefixes": [
"@angular/",
"@angular-devkit/",
"@sbb-esta/",
"@schematics/angular",
"typescript",
"zone.js"
]
}
]
}

0 comments on commit 0e98e18

Please sign in to comment.