File: GitHookNotice.yml

package info (click to toggle)
azure-cli 2.82.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,359,416 kB
  • sloc: python: 1,910,381; sh: 1,343; makefile: 406; cs: 145; javascript: 74; sql: 37; xml: 21
file content (28 lines) | stat: -rw-r--r-- 698 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Git Hook Notice
on:
  pull_request_target:
    types: [opened]
    branches:
      - dev

permissions: {}

jobs:
  git-hook-notice:
    runs-on: ubuntu-latest
    permissions:
      pull-requests: write
    name: Introduce git hook in developer env
    steps:
      - name: Checkout git hook notice message
        uses: actions/checkout@v4
        with:
          sparse-checkout: |
            .github/template/git-hooks-note.md
      - name: Comment on pull request
        uses: mshick/add-pr-comment@v2
        with:
           repo-token: ${{ secrets.GITHUB_TOKEN }}
           message-id: gitHookNoticeComment
           message-path: |
            .github/template/git-hooks-note.md