πŸ“ token

Need to have the person token with push permission.

  • Personal token application
    • Need to check Full control of private repositories
  • Project add secrets
    • Select settings, select secrets, select New repository secret
    • Name is the same as in actions
    • Value fill in the token just applied by the individual

When the token is not filled in actions or the corresponding secrets are not added to the project, it will default to github-actions-bot. More.

πŸ“ GitHub Docs

πŸ“ outputs use

- name: Create issue
uses: actions-cool/issues-helper@v1
id: createissue
with:
actions: 'create-issue'
token: ${{ secrets.GITHUB_TOKEN }}
- name: Check outputs
run: echo "Outputs issue_number is ${{ steps.createissue.outputs.issue-number }}"

More.

πŸ“ includes check rules

"title-includes": 'x1,x2'
x1
x2
"x1y3y2" true
"y2 x1" true
"x2" true
"x3" false
"title-includes": 'x1,x2/y1,y2'
x1 + y1
x2 + y1
x1 + y2
x2 + y2
"x1y3y2" true
"y2 x1" true
"1x2y" false
"x1" false

πŸ“ Reactions Type

contentemoji
+1πŸ‘
-1πŸ‘Ž
laughπŸ˜„
confusedπŸ˜•
heart❀️
hoorayπŸŽ‰
rocketπŸš€
eyesπŸ‘€

For details, please view.

πŸ“ comment-id

Click the Β·Β·Β· icon in the upper right corner of a comment, select Copy link, and the number at the end of the url is comment_id.