Skip to content

Commit

Permalink
Merge branch 'master' into issue-62
Browse files Browse the repository at this point in the history
  • Loading branch information
ferishili committed Nov 20, 2024
2 parents 92b380d + 3770f94 commit 41e2dea
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 5 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"main-moodle": "MOODLE_405_STABLE",
"main-php": "8.3",
"main-oc": "16.6",
"ocs": ["16.6", "15.11"],
"main-db": "mariadb",
"moodle-php": {
"MOODLE_405_STABLE": ["8.1", "8.2"]
},
"moodle-plugin-ci": "4.4.5"
}
15 changes: 15 additions & 0 deletions .github/workflows/config_all.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"main-moodle": "MOODLE_405_STABLE",
"main-php": "8.3",
"main-oc": "16.6",
"ocs": ["16.6", "15.11"],
"main-db": "mariadb",
"moodle-php": {
"MOODLE_401_STABLE": ["7.4", "8.0", "8.1"],
"MOODLE_402_STABLE": ["8.0", "8.1", "8.2"],
"MOODLE_403_STABLE": ["8.0", "8.1", "8.2"],
"MOODLE_404_STABLE": ["8.1", "8.2", "8.3"],
"MOODLE_405_STABLE": ["8.1", "8.2", "8.3"]
},
"moodle-plugin-ci": "4.4.5"
}
4 changes: 2 additions & 2 deletions .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Moodle Plugin CI

########################################################################################################################

on: [push, pull_request]
on: [ push, pull_request ]

########################################################################################################################

jobs:
call-moodle-ci-workflow:
uses: Opencast-Moodle/moodle-workflows-opencast/.github/workflows/moodle-ci.yml@master
uses: Opencast-Moodle/moodle-workflows-opencast/.github/workflows/moodle-ci.yml@main
7 changes: 4 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@
* Plugin version and other meta-data are defined here.
*
* @package tool_opencast
* @copyright 2024 Thomas Niedermaier <[email protected]>
* @copyright 2018 Tobias Reischmann <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

defined('MOODLE_INTERNAL') || die();

$plugin->component = 'tool_opencast';
$plugin->release = 'v4.4-r1';
$plugin->version = 2024060400;
$plugin->requires = 2022112800; // Requires Moodle 4.1+.
$plugin->release = 'v4.5-r1';
$plugin->version = 2024111100;
$plugin->requires = 2024100700; // Requires Moodle 4.5+.
$plugin->maturity = MATURITY_STABLE;

0 comments on commit 41e2dea

Please sign in to comment.