Skip to content

Commit

Permalink
ci: contribution hook (web-infra-dev#6503)
Browse files Browse the repository at this point in the history
ci: send notify to contribution wg
  • Loading branch information
LingyuCoder authored May 10, 2024
1 parent e36900d commit 2f120fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/issue-pr-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Notify Lark for Issue
if: steps.check_member.outputs.skip != 'true' && github.event_name == 'issues'
env:
LARK_WEBHOOK_URL: ${{ secrets.LARK_WEBHOOK_URL }}
LARK_WEBHOOK_URL: ${{ secrets.LARK_CONTRIBUTION_HOOK }}
ISSUE_TITLE: ${{ github.event.issue.title }}
AUTHOR_ID: ${{ github.event.issue.user.login }}
BODY: ${{ github.event.issue.body }}
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Notify Lark for PR
if: steps.check_member.outputs.skip != 'true' && github.event_name == 'pull_request'
env:
LARK_WEBHOOK_URL: ${{ secrets.LARK_WEBHOOK_URL }}
LARK_WEBHOOK_URL: ${{ secrets.LARK_CONTRIBUTION_HOOK }}
PR_TITLE: ${{ github.event.pull_request.title }}
AUTHOR_ID: ${{ github.event.pull_request.user.login }}
BODY: ${{ github.event.pull_request.body }}
Expand Down

0 comments on commit 2f120fc

Please sign in to comment.