Skip to content

Commit

Permalink
Merge branch 'feature/addExceptionHandling' of ssh://github.com/Altin…
Browse files Browse the repository at this point in the history
…n/altinn-broker into feature/addExceptionHandling
  • Loading branch information
Martin Todorov committed Nov 1, 2024
2 parents 43016c4 + 23c3c5c commit a09848b
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 4 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/check-label-for-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Checking label for PR
on:
pull_request:
types: [opened, reopened, ready_for_review, labeled, unlabeled]
jobs:
label:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: mheap/github-action-required-labels@v5
with:
mode: minimum
count: 1
labels: |
kind/breaking-change
kind/feature
kind/feature-request
kind/bug
kind/other
kind/user-story
kind/dependencies
kind/enhancement
kind/incident
kind/chore
21 changes: 17 additions & 4 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>Altinn/renovate-config"
]
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"labels": [
"kind/dependencies"
],
"schedule": [
"before 7am on Monday",
"before 7am on Friday"
],
"packageRules": [
{
"matchFileNames": ["\\.bicep$"],
"enabled": false
}
]
}

0 comments on commit a09848b

Please sign in to comment.