Skip to content
Merged

ds #303

Show file tree
Hide file tree
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
20 changes: 20 additions & 0 deletions .github/workflows/debug-context.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,29 @@ jobs:
echo "github.repository = ${{ github.repository }}"
# =============== pull_request or pull_request_target
# base_ref: available for pull_request or pull_request_target event , The base_ref or target branch of the pull request
# "github.base_ref = main"
echo "github.base_ref = ${{ github.base_ref }}"
# head_ref: available for pull_request or pull_request_target event, The head_ref or source branch of the pull request
# "github.head_ref = pr/welan/md-spell"
echo "github.head_ref = ${{ github.head_ref }}"

# avalibale for pull_request or pull_request_target
echo "github.event.pull_request.base.sha = ${{ github.event.pull_request.base.sha }}"
# avalibale for pull_request or pull_request_target
echo "github.event.pull_request.head.sha = ${{ github.event.pull_request.head.sha }}"

# =============== push
echo "github.event.push.ref = ${{ github.event.push.ref }}"
#The SHA of the most recent commit on ref before the push.
echo "github.event.push.before = ${{ github.event.push.before }}"
#The SHA of the most recent commit on ref after the push.
echo "github.event.push.after = ${{ github.event.push.after }}"

echo "github.event.push.head_commit = ${{ github.event.push.head_commit }}"

#Pushed commits are all commits that are included in the compare between the before commit and the after commit.
echo "github.event.push.head_commit = ${{ github.event.push.commits }}"

# ================= for all
# The commit SHA that triggered the workflow run.
echo "github.sha = ${{ github.sha }}"
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/lint-md.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ jobs:
ignore_path: '.github/markdownlintignore'
# rules: examples/rules/custom.js
# ignore_files: 'vendor/'

- uses: bahmutov/npm-install@v1

- name: Lint Markdown Spell
run: |
npm install markdown-spellcheck -g
make lint-markdown-spell
2 changes: 1 addition & 1 deletion docs/contributing/development/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

the changelog content include:

(1) New Features: it include all PR labelled with "pr/release/feature-new"
(1) New Features: it include all PR labelled with "pr/release/feature-new"

(2) Changed Features: it include all PR labelled with "pr/release/feature-changed"

Expand Down
1 change: 1 addition & 0 deletions test/test_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ import (

func TestTest(t *testing.T) {
RegisterFailHandler(Fail)

RunSpecs(t, "Test Suite")
}