使用 save 更新已有数据为什么需要传 created_at ? 做成在 更新时忽略 created_at 会不会更好一些 #6956
This file contains 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: "Issue Labeler" | |
on: | |
issues: | |
types: [opened, edited, reopened] | |
pull_request: | |
types: [opened, edited, reopened] | |
jobs: | |
triage: | |
runs-on: ubuntu-latest | |
name: Label issues and pull requests | |
steps: | |
- name: check out | |
uses: actions/checkout@v4 | |
- name: labeler | |
uses: jinzhu/super-labeler-action@develop | |
with: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |