diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 0874303fb1..f3e3d03a24 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -21,7 +21,8 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12, windows-2019, windows-2022] + # Deprecation Notice: MacOS 12 will be deprecated by the end of 2024 + os: [ubuntu-20.04, ubuntu-22.04, macos-12, macos-13, windows-2019, windows-2022] runs-on: ${{ matrix.os }} env: HOMEBREW_NO_AUTO_UPDATE: 1 # Prevent time-consuming brew update diff --git a/docs/dg/workflow.md b/docs/dg/workflow.md index af167be466..9e71e0ebba 100644 --- a/docs/dg/workflow.md +++ b/docs/dg/workflow.md @@ -26,7 +26,7 @@ Our workflow is mostly based on the guidelines given at se-education.org/guides. ## Find the suitable pull requests -* If you are contributing to RepoSense for the first time, you can check the list of [backend issues](https://github.com/reposense/RepoSense/issues?q=is%3Aopen+is%3Aissue+label%3Aa-Backend+label%3Ad.FirstTimers) or [frontend issues](https://github.com/reposense/RepoSense/issues?q=is%3Aopen+is%3Aissue+label%3Ad.FirstTimers+label%3Aa-FrontEnd) for first timers. +* If you are contributing to RepoSense for the first time, you can check the list of [issues that are suitable for first timers](https://github.com/reposense/RepoSense/issues?q=is%3Aopen+is%3Aissue+label%3Ad.FirstTimers). diff --git a/docs/ug/authorConfigSyntax.md b/docs/ug/authorConfigSyntax.md index 999820ce63..83081fb683 100644 --- a/docs/ug/authorConfigSyntax.md +++ b/docs/ug/authorConfigSyntax.md @@ -34,9 +34,9 @@ To list out one or more branches for a particular `Repository's Location`, we ca Below is an example: -| Repository's Location | Branch | Author's Git Host ID | ... Hidden columns | -|------------------------------------------------------------------------|----------|----------------------|-----------------------| -| `https://github.com/reposense/RepoSense.git~master\|release\|cypress` | master | sikai00 | -- | +| Repository's Location | Branch | Author's Git Host ID | ... Hidden columns | +|------------------------------------------------------------------------|----------|----------------------|--------------------| +| `https://github.com/reposense/RepoSense.git~master\|release\|cypress` | | sikai00 | -- | We have now provided author details for three different branches in a single repo, using a single row. diff --git a/frontend/src/styles/panels.scss b/frontend/src/styles/panels.scss index 7432371be2..42d13b401e 100644 --- a/frontend/src/styles/panels.scss +++ b/frontend/src/styles/panels.scss @@ -2,7 +2,7 @@ @import 'z-indices'; .panel-padding { - padding: 2rem 1.5rem 2rem 2.2rem; + padding: 0 1.5rem 2rem 2.2rem; } #app-wrapper { diff --git a/frontend/src/views/c-authorship.vue b/frontend/src/views/c-authorship.vue index 7e3ef1007d..104ccc5cc6 100644 --- a/frontend/src/views/c-authorship.vue +++ b/frontend/src/views/c-authorship.vue @@ -1,13 +1,14 @@