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
4 changes: 0 additions & 4 deletions .github/FUNDING.yml

This file was deleted.

7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Continuous Integration

on: [pull_request]

env:
COMPOSER_CACHE_DIR: /tmp/composer-cache

jobs:

test-install-with-composer-and-sqlite:
Expand Down Expand Up @@ -36,7 +39,7 @@ jobs:
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: /tmp/composer-cache
path: ${{ env.COMPOSER_CACHE_DIR }}
key: ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}
- name: Install Symfony Flex
run: |
Expand Down Expand Up @@ -114,7 +117,7 @@ jobs:
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: /tmp/composer-cache
path: ${{ env.COMPOSER_CACHE_DIR }}
key: ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}
- name: Install Symfony Flex
run: |
Expand Down
42 changes: 42 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Close stale issues and PRs

on:
schedule:
- cron: '0 7 * * *'

permissions: { }

concurrency:
group: close-stale-${{ github.ref }}
cancel-in-progress: true

jobs:
stale:
name: Close stale issues and PRs
runs-on: ubuntu-24.04
permissions:
actions: write
issues: write
pull-requests: write
steps:
- uses: actions/stale@v10.1.0
with:
sort-by: updated
ascending: true # Start with ascending to process oldest items first
days-before-stale: 60
days-before-close: 30
exempt-all-milestones: true
stale-issue-message: >-
In an effort to keep our issue list manageable, we are marking this issue as stale because it has been 60 days without activity.
If this issue is still relevant, please let us know by posting a quick comment so that it remains open.
close-issue-message: >-
This issue was closed because it has been stalled for 90 days with no activity.
Feel free to open a new issue if necessary!
stale-pr-message: >-
In an effort to keep our pull request list manageable, we are marking this PR as stale because it has been 60 days without activity.
If this PR is still relevant, please let us know by posting a quick comment or update so that it can be assigned and hopefully merged.
close-pr-message: >-
This PR was closed because it has been stalled for 90 days with no activity.
Feel free to open a new PR if necessary!