Skip to content

Commit

Permalink
feat!: Rename branches master->release, nightly->main
Browse files Browse the repository at this point in the history
  • Loading branch information
DawoudSheraz committed Nov 27, 2024
1 parent 7e86868 commit 065299d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Sync with private repo

on:
push:
branches: [ master, main, nightly ]
branches: [ release, main ]

jobs:
sync:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Run tests

on:
pull_request:
branches: [master]
branches: [ release, main ]
push:
branches: [ release, main ]

jobs:
tests:
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Credentials application supports course and program certificates. This plugin of

Note that user will have to create the course/program using `Discovery plugin <https://github.com/overhangio/tutor-discovery>`__. Then Credentials plugin will be used for certificates configurations.

.. image:: https://github.com/overhangio/tutor-credentials/blob/master/doc/django-admin-screen-shot.png
.. image:: https://github.com/overhangio/tutor-credentials/blob/release/doc/django-admin-screen-shot.png
:alt: Django Admin

Installation
Expand Down Expand Up @@ -47,7 +47,7 @@ User can also create superuser for credentials using the below command
Learner Record UI
-----------------

.. image:: https://github.com/overhangio/tutor-credentials/blob/master/doc/learner-record.png
.. image:: https://github.com/overhangio/tutor-credentials/blob/release/doc/learner-record.png
:alt: Learner Record MFE screenshot

This plugin installs and enables the `Learner Record MFE <https://github.com/openedx/frontend-app-learner-record>`__ by default. It contains views for a learners current status in a program, their current grade, and the ability to share any earned credentials either publically or with institutions.
Expand Down Expand Up @@ -112,4 +112,4 @@ This Tutor plugin is maintained by Muhammad Faraz Maqsood from `Edly <https://ed
License
-------

This software is licensed under the terms of the `GNU Affero General Public License (AGPL) <https://github.com/overhangio/tutor-credentials/blob/master/LICENSE.txt>`_.
This software is licensed under the terms of the `GNU Affero General Public License (AGPL) <https://github.com/overhangio/tutor-credentials/blob/release/LICENSE.txt>`_.
3 changes: 3 additions & 0 deletions changelog.d/20241119_124240_dawoud.sheraz_branch_rename.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- 💥[Improvement] Rename Tutor's two branches (by @DawoudSheraz):
* Rename **master** to **release**, as this branch runs the latest official Open edX release tag.
* Rename **nightly** to **main**, as this branch runs the Open edX master branches, which are the basis for the next Open edX release.
2 changes: 1 addition & 1 deletion tutorcredentials/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from .__about__ import __version__

# Handle version suffix in nightly mode, just like tutor core
# Handle version suffix in main mode, just like tutor core
if __version_suffix__:
__version__ += "-" + __version_suffix__

Expand Down

0 comments on commit 065299d

Please sign in to comment.