File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed
Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 77
88env :
99 GITHUB_TOKEN : ${{ secrets.BOT }}
10- CORE_VERSION : " ^2.1.6 "
10+ CORE_VERSION : " ^2.1.7 "
1111
1212jobs :
1313 packages_split :
@@ -40,13 +40,13 @@ jobs:
4040 steps :
4141 - uses : actions/checkout@v4
4242
43- # Search and replace "moox/core": "*" with "moox/core": "^2.1.6 " in composer.json
43+ # Search and replace "moox/core": "*" with "moox/core": "^2.1.7 " in composer.json
4444 - name : Replace core version in composer.json
4545 working-directory : packages/${{ matrix.package }}
4646 run : |
4747 if [ -f composer.json ]; then
4848 echo "Updating moox/core version in ${{ matrix.package }}"
49- sed -i 's/"moox\/core": "\*"/"moox\/core": "^2.1.6 "/g' composer.json
49+ sed -i 's/"moox\/core": "\*"/"moox\/core": "^2.1.7 "/g' composer.json
5050 fi
5151
5252 # Commit the updated composer.json (if there was a change)
5757 git config --global user.name "mooxbot"
5858 git config --global user.email "[email protected] " 5959 git add composer.json
60- git commit -m "Update moox/core dependency to ^^2.1.6 " || echo "No changes to commit"
60+ git commit -m "Update moox/core dependency to ^^2.1.7 " || echo "No changes to commit"
6161 fi
6262
6363 - if : " !startsWith(github.ref, 'refs/tags/')"
Original file line number Diff line number Diff line change 1414 'updating_started ' => 'Aktualisieren gestartet ' ,
1515
1616 'expired_at ' => 'Abgelaufen ' ,
17+ 'processing_deadline ' => 'Bearbeitungsfrist '
1718 'cycle' => 'Turnus',
1819 'notifyUser ' => 'Verantwortlicher ' ,
1920 'expiry_job ' => 'Typ ' ,
Original file line number Diff line number Diff line change 1818 'updating_started ' => 'Updating started ' ,
1919
2020 'expired_at ' => 'Expired ' ,
21+ 'processing_deadline ' => 'Processing deadline ' ,
2122 'cycle ' => 'Cycle ' ,
2223 'notifyUser ' => 'Verantwortlicher ' ,
2324 'expiry_job ' => 'Type ' ,
Original file line number Diff line number Diff line change @@ -50,6 +50,11 @@ public static function table(Table $table): Table
5050 ->toggleable ()
5151 ->sortable ()
5252 ->since (),
53+ Tables \Columns \TextColumn::make ('processing_deadline ' )
54+ ->label (__ ('core::expiry.processing_deadline ' ))
55+ ->toggleable ()
56+ ->sortable ()
57+ ->since (),
5358 Tables \Columns \TextColumn::make ('cycle ' )
5459 ->label (__ ('core::expiry.cycle ' ))
5560 ->toggleable ()
You can’t perform that action at this time.
0 commit comments