Skip to content

Commit 74d5b90

Browse files
authored
Merge pull request #6 from kubestellar/standardize-workflows
ci: standardize workflow naming and add common workflows
2 parents 2943776 + 9c6dbee commit 74d5b90

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/workflows/feedback.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Feedback Wanted
2+
3+
on:
4+
pull_request:
5+
types: [closed]
6+
7+
jobs:
8+
feedback:
9+
if: github.event.pull_request.merged == true
10+
runs-on: ubuntu-latest
11+
permissions:
12+
pull-requests: write
13+
issues: write
14+
contents: read
15+
16+
steps:
17+
- name: Comment feedback request
18+
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9
19+
with:
20+
token: ${{ secrets.GITHUB_TOKEN }}
21+
issue-number: ${{ github.event.pull_request.number }}
22+
body: |
23+
🎉 Thank you for your contribution! Your PR has been successfully merged.
24+
25+
We’d love to hear your thoughts to help improve KubeStellar.
26+
Please take a moment to fill out our short feedback survey:
27+
28+
https://kubestellar.io/survey

0 commit comments

Comments
 (0)