Skip to content

Commit

Permalink
rename master to main
Browse files Browse the repository at this point in the history
  • Loading branch information
krusche committed Apr 24, 2022
1 parent 5ea6e44 commit 0c046c1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Expand Up @@ -8,7 +8,7 @@
### Steps for Testing
<!-- Please describe in detail how the reviewer can test your changes. -->

1. Install the release as described in [the readme](https://github.com/ls1intum/Orion/blob/master/README.md#testing-of-pull-requests)
1. Install the release as described in [the readme](https://github.com/ls1intum/Orion/blob/main/README.md#testing-of-pull-requests)
2. Open an exercise in Orion
3. ...

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Expand Up @@ -13,11 +13,11 @@ jobs:
environment: prod
runs-on: ubuntu-latest
steps:
# Checkout the current repository on master
# Checkout the current repository on main
- name: Checkout
uses: actions/checkout@v2.3.4
with:
ref: master
ref: main

# Install the necessary Java environment
- name: Setup Java
Expand Down Expand Up @@ -60,11 +60,11 @@ jobs:
environment: prod
runs-on: ubuntu-latest
steps:
# Checkout the current repository on master
# Checkout the current repository on main
- name: Checkout
uses: actions/checkout@v2.3.4
with:
ref: master
ref: main

# Install the necessary Java environment
- name: Setup Java
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -36,7 +36,7 @@ We want to integrate the following features into the plugin:
Upon release of a new mayor IntelliJ version, the plugin needs to be upgraded to support the new version. This upgrade can oftentimes also be performed without much knowledge of the codebase. In the following, the necessary steps are outlined:
1. If you do not have write access to the GitHub repository, fork the repository and clone it
2. Make sure you are able to run the plugin locally as described above
3. Adapt the versions in the build configuration file [build.gradle.kts](https://github.com/ls1intum/Orion/blob/master/build.gradle.kts)
3. Adapt the versions in the build configuration file [build.gradle.kts](https://github.com/ls1intum/Orion/blob/main/build.gradle.kts)
1. At `intellij`, change the version property to the latest version. This is the IntelliJ version used for "runIde". Also adapt the version numbers of all versioned plugins at `intellij``plugins`. You can look up each plugin in the IntelliJ marketplace and find the latest compatible version there.
2. At `tasks``patchPluginXml`, change the `sinceBuild` and `untilBuild` property accordingly, the format is explained in a comment there.
3. Optionally upgrade the versions of the dependencies at `plugins` and `dependencies`, however this is usually not necessary.
Expand Down

0 comments on commit 0c046c1

Please sign in to comment.