chore(deps): bump pygithub from 2.5.0 to 2.6.0 #366
Workflow file for this run
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: Commit Check | |
on: | |
pull_request: | |
branches: 'main' | |
workflow_dispatch: | |
jobs: | |
commit-check: | |
runs-on: ubuntu-latest | |
permissions: # use permissions because of use pr-comments | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} # checkout PR HEAD commit | |
fetch-depth: 0 # fetch all history for all branches and tags | |
- uses: ./ # self test | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # use GITHUB_TOKEN because of use pr-comments | |
with: | |
message: true | |
branch: true | |
author-name: true | |
author-email: true | |
commit-signoff: true | |
merge-base: true | |
job-summary: true | |
pr-comments: ${{ github.event_name == 'pull_request' }} |