Use the letest version of workflows
This commit is contained in:
parent
f77ac17111
commit
b2693a7b6f
4 changed files with 7 additions and 25 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
@ -1,7 +1,8 @@
|
|||
name: Run all tests for Moodle 33+
|
||||
# .github/workflows/ci.yml
|
||||
name: ci
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
workflow_group_33_plus_ci:
|
||||
uses: catalyst/catalyst-moodle-workflows/.github/workflows/group-33-plus-ci.yml@main
|
||||
ci:
|
||||
uses: catalyst/catalyst-moodle-workflows/.github/workflows/ci.yml@main
|
20
.github/workflows/moodle-release.yml
vendored
20
.github/workflows/moodle-release.yml
vendored
|
@ -1,20 +0,0 @@
|
|||
#
|
||||
# Whenever version.php is changed, add the latest version
|
||||
# to the Moodle Plugins directory at https://moodle.org/plugins
|
||||
#
|
||||
name: MOODLE_33PLUS - Releasing in the Plugins directory
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- MOODLE_33PLUS
|
||||
paths:
|
||||
- 'version.php'
|
||||
|
||||
jobs:
|
||||
workflow_group_35_plus_release:
|
||||
uses: catalyst/catalyst-moodle-workflows/.github/workflows/group-35-plus-release.yml@main
|
||||
with:
|
||||
plugin_name: auth_userkey
|
||||
secrets:
|
||||
moodle_org_token: ${{ secrets.MOODLE_ORG_TOKEN }}
|
|
@ -1,4 +1,5 @@
|
|||
[![Build Status](https://github.com/catalyst/moodle-auth_userkey/workflows/Run%20all%20tests%20for%20Moodle%2033+/badge.svg)](https://github.com/catalyst/moodle-auth_userkey/actions)
|
||||
![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/catalyst/moodle-auth_userkey/ci/MOODLE_33PLUS)
|
||||
|
||||
|
||||
Log in to Moodle using one time user key.
|
||||
=========================================
|
||||
|
|
|
@ -29,4 +29,4 @@ $plugin->release = 2022011600; // Match release exactly to version.
|
|||
$plugin->requires = 2017051500; // Requires Moodle 3.3 version.
|
||||
$plugin->component = 'auth_userkey'; // Full name of the plugin (used for diagnostics).
|
||||
$plugin->maturity = MATURITY_STABLE;
|
||||
$plugin->supported = [33, 311]; // A range of branch numbers of supported moodle versions.
|
||||
$plugin->supported = [33, 401]; // A range of branch numbers of supported moodle versions.
|
||||
|
|
Loading…
Reference in a new issue