-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #518 from r-world-devs/devel
2.1.1 patch release
- Loading branch information
Showing
93 changed files
with
4,260 additions
and
1,898 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: ⬆️ Check Version Bump | ||
|
||
on: | ||
pull_request: | ||
branches: [devel, test, master] | ||
|
||
jobs: | ||
check-version: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout source branch | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
path: source | ||
|
||
- name: Checkout target branch | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.event.pull_request.base.sha }} | ||
path: target | ||
|
||
- name: Compare versions | ||
id: compare_versions | ||
run: | | ||
SOURCE_VERSION=$(awk '/^Version:/ { print $2 }' source/DESCRIPTION) | ||
TARGET_VERSION=$(awk '/^Version:/ { print $2 }' target/DESCRIPTION) | ||
echo "Source package version: $SOURCE_VERSION" | ||
echo "Target package version: $TARGET_VERSION" | ||
if [ "$SOURCE_VERSION" == "$TARGET_VERSION" ]; then | ||
echo "Versions are identical" | ||
echo "::set-output name=versions_identical::true" | ||
else | ||
echo "Versions differ" | ||
echo "::set-output name=versions_identical::false" | ||
fi | ||
- name: Fail if versions are identical | ||
if: steps.compare_versions.outputs.versions_identical == 'true' | ||
run: | | ||
echo "The package versions are identical between the source and target branches." | ||
exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
Package: GitStats | ||
Title: Get Statistics from GitHub and GitLab | ||
Version: 2.1.0 | ||
Title: Get Statistics from 'GitHub' and 'GitLab' | ||
Version: 2.1.1 | ||
Authors@R: c( | ||
person(given = "Maciej", family = "Banas", email = "[email protected]", role = c("aut", "cre")), | ||
person(given = "Kamil", family = "Koziej", email = "[email protected]", role = "aut"), | ||
person(given = "Karolina", family = "Marcinkowska", email = "[email protected]", role = "aut"), | ||
person(given = "Matt", family = "Secrest", email = "[email protected]", role = "aut") | ||
) | ||
Description: Obtain statistics in a standardized way from multiple Git services: GitHub and GitLab for the time-being. | ||
Its main purpose is to help teams, whose activities are spread across multiple git platforms, get their repository | ||
metadata in a standardized way from all these platforms. | ||
Description: Obtain statistics in a standardized way from multiple 'Git' services: 'GitHub' and 'GitLab' for the time-being. | ||
Its main purpose is to help teams, whose activities are spread across multiple git platforms, get their repository metadata | ||
in a standardized way from all these platforms. | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE, r6 = TRUE) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.