Skip to content

Commit cf4caec

Browse files
authored
Merge pull request #188 from contentstack/master
Back merge
2 parents 70b6c9f + 8267582 commit cf4caec

117 files changed

Lines changed: 1788 additions & 9373 deletions

File tree

Some content is hidden

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

.cursor/rules/README.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/back-merge-pr.yml

Lines changed: 0 additions & 54 deletions
This file was deleted.

.github/workflows/check-branch.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 'Check Branch'
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
check_branch:
8+
runs-on: ubuntu-latest
9+
steps:
10+
# PRs into master are no longer blocked here based on their source branch.
11+
# Direct merges into master (i.e. without going through PR review) are expected
12+
# to be prevented by GitHub branch protection rules on master, not by this CI check.
13+
- name: Branch check (informational only)
14+
run: |
15+
echo "This workflow no longer restricts which branch a PR into master can come from."
16+
echo "Base branch : ${{ github.base_ref }}"
17+
echo "Head branch : ${{ github.head_ref }}"
18+
echo "Direct pushes/merges to master should be prevented via branch protection rules, not this workflow."

.github/workflows/check-version-bump.yml

Lines changed: 0 additions & 86 deletions
This file was deleted.

.github/workflows/issues-jira.yml

Lines changed: 0 additions & 118 deletions
This file was deleted.

.github/workflows/sca-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup .NET Core @ Latest
1414
uses: actions/setup-dotnet@v1
1515
with:
16-
dotnet-version: "7.0.x"
16+
dotnet-version: "10.0.x"
1717

1818
- name: Run Dotnet Restore
1919
run: dotnet restore

.github/workflows/unit-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
steps:
1010
- name: Checkout repository
1111
uses: actions/checkout@v4.2.2
12-
- name: Setup .NET 7.0
12+
- name: Setup .NET
1313
uses: actions/setup-dotnet@v4.3.0
1414
with:
15-
dotnet-version: '7.0.x'
15+
dotnet-version: '10.0.x'
1616
- name: Restore dependencies
1717
run: dotnet restore Contentstack.Net.sln
1818
- name: Build solution

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,6 @@ packages/
6767
*.sln.docstates
6868

6969
# Python
70-
Scripts/venv/
70+
Scripts/venv/
71+
# Cached region registry — regenerated at runtime from CDN
72+
*/Assets/regions.json

AGENTS.md

Lines changed: 0 additions & 49 deletions
This file was deleted.

0 commit comments

Comments
 (0)