You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This is a basic workflow to help you get started with Actionsname: CIenv:
TZ: Asia/ShanghaiOWNER: xiaotiandadaREPO: blogREPO_PATH: README.md# Controls when the action will run.on:
issues:
types: [opened, edited]issue_comment:
types: [created, edited]# A workflow run is made up of one or more jobs that can run sequentially or in paralleljobs:
# This workflow contains a single job called "build"build:
# The type of runner that the job will run onruns-on: ubuntu-lateststrategy:
matrix:
node-version: [16.x]# See supported Node.js release schedule at https://nodejs.org/en/about/releases/steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}uses: actions/setup-node@v2with:
node-version: ${{ matrix.node-version }}
- run: yarn install --immutable
- run: GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} node ./lib/index.js
默认时区是 UTC,如果你在国内可以设置环境变量
env:
TZ: Asia/Shanghai
The text was updated successfully, but these errors were encountered:
secrets.GITHUB_TOKEN
一些相关的工具:
获取 Repo 数据,主要获取 Name、Issues count 信息,然后获取 Issues 信息
生成 Markdown
Push 内容为 Readme.md
设置 GitHub Action
默认时区是 UTC,如果你在国内可以设置环境变量
The text was updated successfully, but these errors were encountered: