Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 5 additions & 17 deletions .github/workflows/implementation-auto-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,14 @@ name: Auto release on merge (Implementation)

on:
push:
branches: ["master", "main"]
branches:
- master
paths-ignore:
- ".github/**"
- ".trunk/**"
- "**/*.md"
- ".gitignore"
- ".pre-commit-config.yaml"
- "LICENSE"
- "**/*.md"
- "docs/**"
- "renovate.json"
- "test/**"
- "src/**"
- "mise.toml"

jobs:
auto-release:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: rymndhng/release-on-push-action@master
with:
bump_version_scheme: patch
tag_prefix: ""
uses: ./.github/workflows/automation-auto-release.yml
11 changes: 4 additions & 7 deletions .github/workflows/implementation-enforce-labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@ name: Enforce PR labels (Implementation)
on:
pull_request:
types: [labeled, unlabeled, opened, edited, synchronize]
branches: [ "master", "main" ]
branches:
- master

jobs:
enforce-label:
runs-on: ubuntu-latest
steps:
- uses: yogevbd/enforce-label-action@2.2.2
with:
REQUIRED_LABELS_ANY: "release:minor,release:major,release:patch,release:norelease,norelease"
REQUIRED_LABELS_ANY_DESCRIPTION: "Select at least one label ['release:minor','release:major','release:patch','release:norelease','norelease']"
uses: ./.github/workflows/automation-enforce-release-labels.yml
4 changes: 2 additions & 2 deletions .github/workflows/implementation-housekeeping.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Housekeeping (Implementation)

on:
schedule:
- cron: "0 6 * * *"
- cron: "0 2 * * *"

workflow_dispatch:

jobs:
shared:
uses: dfds/shared-workflows/.github/workflows/automation-housekeeping.yml@master
uses: ./.github/workflows/automation-housekeeping.yml
secrets: inherit
with:
delete_head_branch: true
Expand Down
Loading