Skip to content

Commit cac83db

Browse files
authored
chore(Internal): 🔖 new release (#271)
2 parents d130458 + 671d03b commit cac83db

File tree

79 files changed

+3876
-5238
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+3876
-5238
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @WasiqBhamla/boyka-core
1+
* @BoykaFramework/boyka-core

.github/CONTRIBUTING.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# 👷‍♂️ Contributing
22

3-
- [Join our Discord server](https://wasiqbhamla.github.io/boyka-framework/contributing/machine-setup/join-discord)
4-
- [Cloning and building the project](https://wasiqbhamla.github.io/boyka-framework/contributing/machine-setup/build-project)
5-
- [Project structure](https://wasiqbhamla.github.io/boyka-framework/contributing/project-details/structure)
6-
- [Branch protection](https://wasiqbhamla.github.io/boyka-framework/contributing/project-details/branch-protection)
7-
- [Branching strategy](https://wasiqbhamla.github.io/boyka-framework/contributing/project-details/branch-strategy)
8-
- [Suggested IDEs](https://wasiqbhamla.github.io/boyka-framework/contributing/machine-setup/suggested-ide)
9-
- [Java coding style setup](https://wasiqbhamla.github.io/boyka-framework/contributing/project-details/coding-style)
10-
- [GitHub Actions workflows](https://wasiqbhamla.github.io/boyka-framework/contributing/project-details/action-workflows)
11-
- [Commit steps followed](https://wasiqbhamla.github.io/boyka-framework/contributing/project-details/commit-steps#commit-the-changes)
12-
- [Getting your PR ready to merge](https://wasiqbhamla.github.io/boyka-framework/contributing/project-details/ready-your-pr)
3+
- [Join our Discord server](https://BoykaFramework.github.io/boyka-framework/contributing/machine-setup/join-discord)
4+
- [Cloning and building the project](https://BoykaFramework.github.io/boyka-framework/contributing/machine-setup/build-project)
5+
- [Project structure](https://BoykaFramework.github.io/boyka-framework/contributing/project-details/structure)
6+
- [Branch protection](https://BoykaFramework.github.io/boyka-framework/contributing/project-details/branch-protection)
7+
- [Branching strategy](https://BoykaFramework.github.io/boyka-framework/contributing/project-details/branch-strategy)
8+
- [Suggested IDEs](https://BoykaFramework.github.io/boyka-framework/contributing/machine-setup/suggested-ide)
9+
- [Java coding style setup](https://BoykaFramework.github.io/boyka-framework/contributing/project-details/coding-style)
10+
- [GitHub Actions workflows](https://BoykaFramework.github.io/boyka-framework/contributing/project-details/action-workflows)
11+
- [Commit steps followed](https://BoykaFramework.github.io/boyka-framework/contributing/project-details/commit-steps#commit-the-changes)
12+
- [Getting your PR ready to merge](https://BoykaFramework.github.io/boyka-framework/contributing/project-details/ready-your-pr)

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Want to discuss anything else?
4-
url: https://github.com/WasiqBhamla/boyka-framework/discussions/new
4+
url: https://github.com/BoykaFramework/boyka-framework/discussions/new
55
about: Create a discussion about it.
66
- name: You can also join our Discord server
77
url: https://discord.gg/dUg8K9DAsR

.github/SUPPORT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ You can get support by:
77

88
[discord]: https://discord.gg/dUg8K9DAsR
99

10-
[discussion]: https://github.com/WasiqBhamla/boyka-framework/discussions/new
10+
[discussion]: https://github.com/BoykaFramework/boyka-framework/discussions/new

.github/dependabot.yml

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,28 @@ version: 2
22
updates:
33
- package-ecosystem: 'npm'
44
directory: '/'
5+
target-branch: 'develop'
56
schedule:
6-
interval: 'weekly'
7+
interval: 'daily'
8+
versioning-strategy: increase
79

810
- package-ecosystem: 'maven'
911
directory: '/core-java'
12+
target-branch: 'develop'
1013
schedule:
11-
interval: 'weekly'
14+
interval: 'daily'
15+
versioning-strategy: increase
16+
17+
- package-ecosystem: 'maven'
18+
directory: '/sample-tests'
19+
target-branch: 'develop'
20+
schedule:
21+
interval: 'daily'
22+
versioning-strategy: increase
23+
24+
- package-ecosystem: 'github-actions'
25+
directory: '/'
26+
target-branch: 'develop'
27+
schedule:
28+
interval: 'daily'
29+
versioning-strategy: increase

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@
3737
3838
## Reviewers
3939

40-
### @WasiqBhamla/boyka-core
40+
### @BoykaFramework/boyka-core
4141

4242
> IMPORTANT: Make sure to check the `Allow edits from maintainers` box below this window
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: 'Upload app to BrowserStack'
2+
3+
on:
4+
schedule:
5+
- cron: '0 21 25 * *'
6+
workflow_dispatch:
7+
8+
env:
9+
BS_USER: ${{ secrets.BS_USER }}
10+
BS_KEY: ${{ secrets.BS_KEY }}
11+
12+
jobs:
13+
upload-app:
14+
name: 'Upload App to BrowserStack'
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Check out Git repository
18+
uses: actions/checkout@v2
19+
20+
- name: Upload Android App
21+
id: android_app_upload
22+
uses: fjogeleit/http-request-action@v1
23+
with:
24+
url: https://api-cloud.browserstack.com/app-automate/upload
25+
method: POST
26+
username: ${{ env.BS_USER }}
27+
password: ${{ env.BS_KEY }}
28+
data: '{ "custom_id": "AndroidApp" }'
29+
files: '{ "file": "${{ github.workspace }}/core-java/src/test/resources/apps/android/saucedemo.apk" }'

.github/workflows/pre-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
- name: Get the previous release version
4444
id: old_version
4545
run: |
46-
export MVN_OLD_VERSION=$(git describe --tags --abbrev=0)
47-
echo "::set-output name=previous_version::$MVN_OLD_VERSION"
46+
export MVN_OLD_VERSION=$(git describe --tags $(git rev-list --tags --max-count=1))
47+
echo "previous_version=$MVN_OLD_VERSION" >> $GITHUB_OUTPUT
4848
4949
- name: Update pre-release version
5050
run: yarn prerelease
@@ -53,7 +53,7 @@ jobs:
5353
id: version
5454
run: |
5555
export MVN_VERSION=$(node -pe "require('./website/package.json').version")
56-
echo "::set-output name=version::$MVN_VERSION"
56+
echo "version=$MVN_VERSION" >> $GITHUB_OUTPUT
5757
5858
- name: Generate Change log
5959
if: steps.version.outputs.version != null

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
id: old_version
4545
run: |
4646
export MVN_OLD_VERSION=$(git describe --match "v[0-9].[0-9].[0-9]" --abbrev=0 --tags HEAD)
47-
echo "::set-output name=previous_version::$MVN_OLD_VERSION"
47+
echo "previous_version=$MVN_OLD_VERSION" >> $GITHUB_OUTPUT
4848
4949
- name: Update release version
5050
run: yarn release
@@ -53,7 +53,7 @@ jobs:
5353
id: version
5454
run: |
5555
export MVN_VERSION=$(node -pe "require('./website/package.json').version")
56-
echo "::set-output name=version::$MVN_VERSION"
56+
echo "version=$MVN_VERSION" >> $GITHUB_OUTPUT
5757
5858
- name: Generate Change log
5959
if: steps.version.outputs.version != null

.github/workflows/test-core.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,10 @@ jobs:
7878
name: target
7979
path: ${{ github.workspace }}/core-java
8080

81-
- name: Install Appium
82-
run: npm install -g appium
81+
- name: Install Appium 2.0
82+
run: |
83+
npm install -g appium@next
84+
appium driver install uiautomator2
8385
8486
- name: Start Selenium Grid
8587
run: java -jar core-java/libs/selenium-server-4.4.0.jar standalone > core-java/selenium-grid.log &

0 commit comments

Comments
 (0)