Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
wanglusheng committed Feb 6, 2025
1 parent be9a38d commit 60848ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/auto_format_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:

steps:
- name: Checkout code
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
run: echo $(echo $GITHUB_REF | cut -d / -f 3)
- if: github.event_name == 'push'
uses: actions/checkout@v4
uses: actions/checkout@v2
- if: github.event_name == 'pull_request'
uses: actions/checkout@v4
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/auto_format_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:

steps:
- name: Checkout code
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
run: echo $(echo $GITHUB_REF | cut -d / -f 3)
- if: github.event_name == 'push'
uses: actions/checkout@v4
uses: actions/checkout@v2
- if: github.event_name == 'pull_request'
uses: actions/checkout@v4
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}

Expand Down

0 comments on commit 60848ed

Please sign in to comment.