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
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/* export-ignore

# Export white-listed production code only.
/bin -export-ignore
/bin/php-matrix -export-ignore
/data -export-ignore
/src -export-ignore
/composer.json -export-ignore
Expand Down
14 changes: 11 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,20 @@ updates:
- package-ecosystem: composer
directory: /
schedule:
interval: weekly
interval: daily
cooldown:
default-days: 3

- package-ecosystem: gomod
directory: /
schedule:
interval: weekly
interval: daily
cooldown:
default-days: 3

- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
interval: daily
cooldown:
default-days: 3
1 change: 0 additions & 1 deletion .github/release-drafter.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Audit
on:
workflow_dispatch:
schedule:
- cron: '23 3 * * 1' # Weekly on Monday
- cron: '26 3 * * *'
pull_request:
branches:
- main
Expand All @@ -20,7 +20,7 @@ permissions:

jobs:
php:
uses: typisttech/.github/.github/workflows/audit-php.yml@v3
uses: typisttech/.github/.github/workflows/audit-php.yml@8c3b859e35165a6e81a660713be195ec61d2ca1d # v5.2.1

go:
uses: typisttech/.github/.github/workflows/audit-go.yml@v3
uses: typisttech/.github/.github/workflows/audit-go.yml@8c3b859e35165a6e81a660713be195ec61d2ca1d # v5.2.1
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:

jobs:
dependabot:
uses: typisttech/.github/.github/workflows/dependabot-auto-merge.yml@v3
uses: typisttech/.github/.github/workflows/dependabot-auto-merge.yml@8c3b859e35165a6e81a660713be195ec61d2ca1d # v5.2.1
with:
minor: true
patch: true
14 changes: 9 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,21 @@ permissions:

jobs:
actions:
uses: typisttech/.github/.github/workflows/lint-actions.yml@v3
uses: typisttech/.github/.github/workflows/lint-actions.yml@8c3b859e35165a6e81a660713be195ec61d2ca1d # v5.2.1

php:
uses: typisttech/.github/.github/workflows/lint-php.yml@v3
uses: typisttech/.github/.github/workflows/lint-php.yml@8c3b859e35165a6e81a660713be195ec61d2ca1d # v5.2.1
with:
phpstan: true
box: true

box-php-version: '8.5'
box-version: '4'

go:
uses: typisttech/.github/.github/workflows/lint-go.yml@v3
uses: typisttech/.github/.github/workflows/lint-go.yml@8c3b859e35165a6e81a660713be195ec61d2ca1d # v5.2.1
with:
golangci-lint: false
golangci-lint: true
golangci-lint-version: v2.11 # Must be kept in sync with @../../mise.toml

wait-for-all-lint:
needs:
Expand Down
90 changes: 0 additions & 90 deletions .github/workflows/publish.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release Drafter

on:
workflow_dispatch:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true

permissions:
contents: write
pull-requests: read

jobs:
release-drafter:
uses: typisttech/.github/.github/workflows/release-drafter.yml@8c3b859e35165a6e81a660713be195ec61d2ca1d # v5.2.1
Loading
Loading