We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 34072a7 + 04600ef commit 20ecf97Copy full SHA for 20ecf97
.github/workflows/ci.yaml
@@ -1,11 +1,9 @@
1
-name: Python application
+name: CI
2
3
on:
4
push:
5
branches:
6
- '**'
7
- pull_request:
8
- branches: [ "main" ]
9
workflow_dispatch:
10
11
permissions:
.github/workflows/pr-comment.yaml
@@ -0,0 +1,20 @@
+name: Comment on PR
+
+on:
+ pull_request:
+ branches: [ "main" ]
+jobs:
+ comment:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/github-script@v7
12
+ with:
13
+ github-token: ${{secrets.GHA_PRS}}
14
+ script: |
15
+ github.rest.issues.createComment({
16
+ issue_number: context.issue.number,
17
+ owner: context.repo.owner,
18
+ repo: context.repo.repo,
19
+ body: '👋 Thanks for reporting!'
20
+ })
0 commit comments