Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: test #8

Open
wants to merge 5 commits into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -340,7 +340,7 @@ jobs:
rm -f versions.json
echo ${{steps.version-change.outputs.CHANGED}} > changed.txt
npx lerna ls -all --json > versions.json
find ./packages/vscode-extension -type f -name '*.visx' -exec mv {} . \;
find ./packages/vscode-extension -type f -name '*.vsix' -exec mv {} . \;
find ./packages/server/lib -type f -name '*.exe' -exec mv {} server.exe \;

- name: upload release info to artifact
11 changes: 9 additions & 2 deletions .github/workflows/lint-pr.yml
Original file line number Diff line number Diff line change
@@ -6,6 +6,11 @@ on:
- opened
- edited
- synchronize
branches:
- main
- dev
- hotfix/**/*
- prerelease
schedule:
- cron: "0 8 * * *"

@@ -180,7 +185,6 @@ jobs:
python .github/detect/sensitive-detect.py repo

attension-on-version:
if: ${{ github.event_name == 'pull_request' && (github.event.pull_request.base.ref == 'main' || github.event.pull_request.base.ref == 'prerelease') && github.event.action != 'edited' }}
runs-on: ubuntu-latest
steps:
- name: checkout branch
@@ -194,11 +198,14 @@ jobs:
with:
reviewers: "MuyangAmigo"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v6
- name: check feature history
id: description
shell: "/bin/bash {0}"
run: |
head=$(git describe --first-parent --abbrev=0)
head=${{ steps.branch-name.outputs.current_branch }}
echo $head
history_cli_feat=$(git log --pretty=format:"%s %h" $head...HEAD -- packages/cli | grep "^feat")
echo $history_cli_feat