feat: #WIK-18587 AItable-复选框修改选中状态主色 #1260
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
pull_request_review: | |
types: | |
- submitted | |
check_suite: | |
types: | |
- completed | |
status: {} | |
jobs: | |
autoApprove: | |
if: startsWith(github.head_ref, 'release-auto-') | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: hmarr/auto-approve-action@v4 | |
with: | |
review-message: 'Auto approve sync PRs to auto merge them' | |
publish: | |
if: startsWith(github.head_ref, 'release-auto-') | |
needs: [autoApprove] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install dependencies | |
run: npm ci --force | |
- name: Publish | |
if: startsWith(github.head_ref, 'release-auto-v') | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
npm run pub | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_AI_TABLE }} | |
- name: Publish-next | |
if: startsWith(github.head_ref, 'release-auto-next-v') | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
npm run pub-next | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_AI_TABLE }} | |
- name: Read package.json | |
id: read-version | |
uses: notiz-dev/github-action-json-property@release | |
with: | |
path: 'package.json' | |
prop_path: 'version' | |
autoMerge: | |
if: startsWith(github.head_ref, 'release-auto-') | |
needs: [publish] | |
runs-on: ubuntu-latest | |
steps: | |
- id: autoMerge | |
name: autoMerge | |
uses: 'pascalgn/[email protected]' | |
env: | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
MERGE_LABELS: '' | |
MERGE_FORKS: 'false' | |
MERGE_RETRIES: '20' | |
MERGE_RETRY_SLEEP: '60000' |