ci: streamline GitHub CLI authentication in cancel workflow
This commit is contained in:
parent
cf3582b964
commit
b721ebed76
|
@ -8,17 +8,11 @@ jobs:
|
||||||
cancel-workflow:
|
cancel-workflow:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Set up GitHub CLI
|
|
||||||
env:
|
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
run: |
|
|
||||||
echo "${{ secrets.GITHUB_TOKEN }}" > ~/.gh_token
|
|
||||||
gh auth login --with-token < ~/.gh_token
|
|
||||||
|
|
||||||
- name: Cancel Workflow if Merged or Closed
|
- name: Cancel Workflow if Merged or Closed
|
||||||
if: ${{ github.event.pull_request.merged || github.event.pull_request.state == 'closed' }}
|
if: ${{ github.event.pull_request.merged || github.event.pull_request.state == 'closed' }}
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
echo "PR has been merged or closed, cancelling workflow..."
|
echo "PR has been merged or closed, cancelling workflow..."
|
||||||
|
gh auth login --with-token $GH_TOKEN
|
||||||
gh run list --repo ${{ github.repository }} --branch ${{ github.event.pull_request.head.ref }} --workflow "TDengine Test" --status in_progress --json databaseId --jq '.[].databaseId' | xargs -I {} gh run cancel --repo ${{ github.repository }} {}
|
gh run list --repo ${{ github.repository }} --branch ${{ github.event.pull_request.head.ref }} --workflow "TDengine Test" --status in_progress --json databaseId --jq '.[].databaseId' | xargs -I {} gh run cancel --repo ${{ github.repository }} {}
|
Loading…
Reference in New Issue